https://github.com/code-pop/nuxt-3-essentials
https://github.com/code-pop/nuxt-3-essentials
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/code-pop/nuxt-3-essentials
- Owner: Code-Pop
- Created: 2022-06-04T05:49:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-17T20:22:49.000Z (almost 3 years ago)
- Last Synced: 2025-07-10T11:39:26.839Z (4 months ago)
- Language: Vue
- Size: 217 KB
- Stars: 9
- Watchers: 4
- Forks: 16
- 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.