Releases: nuxt-community/firebase-module
Releases · nuxt-community/firebase-module
v1.0.1
📄 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
v0.0.3
v0.0.2
📄 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