https://github.com/boggyjan/nuxt3_sandbox
https://github.com/boggyjan/nuxt3_sandbox
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/boggyjan/nuxt3_sandbox
- Owner: boggyjan
- Created: 2022-03-31T07:28:15.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T09:05:02.000Z (12 months ago)
- Last Synced: 2025-02-01T07:42:34.644Z (5 months ago)
- Language: Vue
- Size: 530 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.