diff --git a/README.md b/README.md index 0cb1d533..b9f1cd04 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,11 @@ **Important:** This module is meant for easy and quick set-up of Firebase in a Nuxt project. Due to the nature of this module, it is possibly not optimal for websites that need to be super performant and/or SEO friendly, since the module adds the Firebase services to the global scope. If you wan't your website to be more performant, you'd probably be better off by importing the services only in the files where you need them (i.e. by NOT using this module). That being said, the difference might be marginal depending on your project. +## Features + +- Helps to easily setup Firebase and makes it **available throughout your Nuxt.js app** +- Dynamically imports individual Firebase services for a **faster page load** + ## Demo [Demo](https://nuxt-fire-demo.firebaseapp.com/) @@ -144,7 +149,7 @@ By default, all supported Firebase products are loaded. If you only wish to load Your firebase config snippet. You can retrieve this information from your Firebase project's overview page: -`https://console.firebase.google.com/project/your-project-id/overview` +`https://console.firebase.google.com/project//overview` ```js { diff --git a/package.json b/package.json index 58850236..afa9b824 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-fire", - "version": "2.1.0", + "version": "2.2.1", "license": "MIT", "description": "Intergrate Firebase into your Nuxt project.", "main": "index.js", @@ -16,6 +16,6 @@ }, "peerDependencies": { "nuxt": "^2.10.1", - "firebase": "^7.2.0" + "firebase": "^7.2.1" } }