https://github.com/https-eduardo/nuxt-store-comparation
A comparision between stores libraries for Nuxt
https://github.com/https-eduardo/nuxt-store-comparation
Last synced: 6 months ago
JSON representation
A comparision between stores libraries for Nuxt
- Host: GitHub
- URL: https://github.com/https-eduardo/nuxt-store-comparation
- Owner: https-eduardo
- Created: 2022-08-04T12:05:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-04T12:06:59.000Z (over 3 years ago)
- Last Synced: 2025-05-13T23:50:14.175Z (9 months ago)
- Language: Vue
- Size: 92.8 KB
- Stars: 2
- Watchers: 1
- 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.