Skip to content

Latest commit

 

History

History
93 lines (67 loc) · 2.25 KB

README.md

File metadata and controls

93 lines (67 loc) · 2.25 KB

Nuxt 3 template - Firebase Version

A Firebase template for Nuxt 3. A few examples inside 🙌

Online Preview

image

More templates

Basic Version

What's included

Highly recommended documentations

How to setup Firebase

Open nuxt.config.ts file and add your Firebase config.

vuefire: {
      // Add your config here ↓
      config: {
        apiKey: "...",
        authDomain: "...",
        projectId: "...",
        storageBucket: "...",
        messagingSenderId: "...",
        appId: "...",
        measurementId: "...",
        }
      // ...
    },

How to install more icon packages

Available collections here

yarn add --dev @iconify-json/[the-collection-you-want]

// example
yarn add --dev @iconify-json/mdi

// or install ALL of them
yarn add --dev @iconify/json

Setup

Make sure to install the dependencies:

You can use any package manager you want (yarn, npm, pnpm, etc.)

# yarn
yarn install

Development Server

Start the development server on http://localhost:3000

# yarn
yarn dev

Check out the deployment documentation for more information.