Skip to content

Releases: nuxt-community/firebase-module

v1.0.1

18 Nov 22:39
bf23f85
Compare
Choose a tag to compare

📄 Release Notes

Important bugfix & new way of adding options within nuxt.config.js.

✨ New Features

  • You can now separate the options from the module import like so:
modules: ['nuxt-fire'],

/*
** Nuxt-Fire Module
*/
fire: {
  config: {
  apiKey: '<apiKey>',
  authDomain: '<authDomain>',
  databaseURL: '<databaseURL>',
  projectId: '<projectId>',
  storageBucket: '<storageBucket>',
  messagingSenderId: '<messagingSenderId>'
  }
}

The other way with the array is of course still supported.

🐜 Bug Fixes

  • Fixed bug in loading options

v1.0.0

18 Nov 19:21
f465459
Compare
Choose a tag to compare

📄 Release Notes

  • Small code cleanups

v0.0.3

18 Nov 13:53
5f098ea
Compare
Choose a tag to compare
v0.0.3 Pre-release
Pre-release

📄 Release Notes

  • fixed issues with Real-Time Database

⚠️This is just a barely working example and not fully tested. Please don't use this in production yet.

v0.0.2

18 Nov 13:46
Compare
Choose a tag to compare
v0.0.2 Pre-release
Pre-release

📄 Release Notes

  • renamed options.use to options.useOnly to make clear that if it is not set, all Firebase products will be loaded
  • options.useOnly can now be null
  • added error if options.config is missing or incomplete
  • created options.devConfig
  • added RealTime Database

⚠️This is just a barely working example and not fully tested. Please don't use this in production yet.

v0.0.1

18 Nov 12:51
Compare
Choose a tag to compare
v0.0.1 Pre-release
Pre-release

📄 Release Notes

Initial release of nuxt-fire.

⚠️This is just a barely working example and not fully tested. Please don't use this in production yet.