https://github.com/nicolassutter/nuxt3-starter
https://github.com/nicolassutter/nuxt3-starter
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/nicolassutter/nuxt3-starter
- Owner: nicolassutter
- Created: 2022-09-23T13:53:55.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-23T13:56:49.000Z (almost 4 years ago)
- Last Synced: 2025-07-01T03:53:59.426Z (about 1 year ago)
- Language: JavaScript
- Size: 175 KB
- Stars: 0
- 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 generate
```
Locally preview production build:
```bash
npm run preview
```
Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.