Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fachrihawari committed Oct 21, 2019
2 parents c636ddc + 301bb4e commit 08ebdfb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down Expand Up @@ -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/<your-project-id>/overview`

```js
{
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -16,6 +16,6 @@
},
"peerDependencies": {
"nuxt": "^2.10.1",
"firebase": "^7.2.0"
"firebase": "^7.2.1"
}
}

0 comments on commit 08ebdfb

Please sign in to comment.