Nuxt template with VueFire to get started with Firebase using the Free Spark Plan. If you are looking for the same version with SSR and Cloud Functions, check the Blaze Plan template instead.
You can check a live demo at nuxt-vuefire-example-spark.web.app.
In order to test this locally, follow all the steps in Provisioning Firebase and Development Server. Since this example is using most of Firebase features, there are quite a few things to do. In practice, you might only use half of them.
Thanks to Firebase Emulators, you can try this template locally without even creating a Firebase project. You will need to install the Firebase Tools CLI with npm i -g firebase-tools
, install dependencies with pnpm i
, and then run in two different processes:
pnpm run emulators
and
pnpm run dev
It's recommended to use git to clone this template and track any changes made by the Firebase Tools CLI to revert them if needed.
You will also need to install the Firebase Tools CLI, either globally or locally. To install globally do:
npm install -g firebase-tools
Then login to your Firebase account with firebase login
.
Install dependencies with pnpm install
.
Start by creating a Firebase Project in the console.
Activate now any of the features you want to use (note the starter uses them all):
- Firestore
- Authentication
- Realtime Database
- Storage
Create an Application in the Project Overview. This will give you a firebaseConfig
object, replace the content of vuefire.config
in nuxt.config.ts
with it.
Now you have to run firebase init
at the root of your project. Some notes:
- Select the features you want to use.
- Note the deployed folder of Nuxt is
.output/public
, notpublic
as the firebase tools CLI will suggest. - Selecting GitHub actions will create a service account to allow GitHub to deploy to Firebase. If you don't enable this, you should also remove the
.github/workflows
folder as it will just won't work.
This step should overwrite some files, you can revert most of them if you want to test this template with your own project. The only file that shouldn't be reverted is .firebaserc
as it contains the project ID.
You can also create the .env
from the example:
mv .env.example .env
You can now clean up any files you don't need, for example, if you are not using the Realtime Database, you can delete database.rules.json
.
If you don't want to use a Service Account file, you will have to turn off SSR in
nuxt.config.ts
withssr: false
and delete the lineGOOGLE_APPLICATION_CREDENTIALS=./service-account.json
from.env
.
For some Nuxt features to work like server side rendering, you will need to create a service account. You can do this from the Project Settings, Service Accounts tab. Then, download the JSON file and save it as service-account.json
at the root of your project.
If you don't want to use App Check, delete the
vuefire.appCheck
object fromnuxt.config.ts
and remove the lineFIREBASE_APPCHECK_DEBUG_TOKEN=...
from.env
.
Once you have completed the deployment as explained above, you can optionally register App Check. You will then need to register a reCAPTCHA v3 provider. You can find the instructions for this in Firebase Documentation, they will tell you to register your site for reCAPTCHA v3 and to copy your secret key in the firebase console. Then, you will need to copy the site key in your nuxt.config.ts
file:
export default defineNuxtConfig({
// ...
vuefire: {
// ...
appCheck: {
provider: 'ReCaptchaV3',
// site key, NOT secret key
key: '...',
isTokenAutoRefreshEnabled: true,
},
},
})
It's also recommended to generate a debug token now from the Firebase Console, on the Apps tab, and add it to your .env
file:
GOOGLE_APPLICATION_CREDENTIALS=./service-account.json
FIREBASE_APPCHECK_DEBUG_TOKEN=...
Note you will need to enforce App Check on the APIs tab of the Firebase Console for each service you want to protect.
If you added support for emulators, you will need to start them before starting the Nuxt development server.
You can start the emulators with npm run emulators
or firebase emulators:start
. Then start the server with npm run dev
.
You can activate VueFire logs with:
CONSOLA_LEVEL=5 npm run dev
Since this is an SPA, building for production is usually done with pnpm run generate
.
In order to preview a production build locally, you will need to enable debug in App Check:
VUEFIRE_APPCHECK_DEBUGN=true pnpm run generate
If you want to preview with emulators, you can force them in a production build with:
VUEFIRE_EMULATORS=true pnpm run generate
Note you can combine both by just passing the variables one after the other:
VUEFIRE_APPCHECK_DEBUGN=true VUEFIRE_EMULATORS=true pnpm run generate
Always deploy once from the CLI as it might prompt you to create some roles. Once this is done, link the hosting site with the app from the Project Settings, Your apps section.
You can deploy manually with pnpm run generate && firebase deploy
.
If you enabled GitHub Actions, you can now push to GitHub and it will automatically deploy to Firebase Hosting. You still need to manually deploy Firestore, Realtime Database, and Storage with firebase deploy
or selectively with --only
, e.g. firebase deploy --only storage
.