https://github.com/selemondev/nuxt-3-firebase
A Todo App created with Nuxt 3 and Firebase V9 :sparkles:
https://github.com/selemondev/nuxt-3-firebase
firebase nuxt3
Last synced: over 1 year ago
JSON representation
A Todo App created with Nuxt 3 and Firebase V9 :sparkles:
- Host: GitHub
- URL: https://github.com/selemondev/nuxt-3-firebase
- Owner: selemondev
- Created: 2022-10-03T14:29:54.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-02-17T07:29:52.000Z (over 1 year ago)
- Last Synced: 2025-02-17T08:29:39.469Z (over 1 year ago)
- Topics: firebase, nuxt3
- Language: Vue
- Homepage: https://n3-firebase-app.netlify.app/
- Size: 550 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
```
## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```
## Production
Build the application for production:
```bash
npm run build
```
Locally preview production build:
```bash
npm run preview
```
Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.