2022-08-11 09:57:51 +02:00
|
|
|
# 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
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
## Development Server
|
|
|
|
|
|
|
|
Start the development server on http://localhost:3000
|
|
|
|
|
|
|
|
```bash
|
2022-08-12 18:23:03 +02:00
|
|
|
yarn dev
|
2022-08-11 09:57:51 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Production
|
|
|
|
|
|
|
|
Build the application for production:
|
|
|
|
|
|
|
|
```bash
|
2022-08-12 18:23:03 +02:00
|
|
|
yarn build
|
2022-08-11 09:57:51 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Locally preview production build:
|
|
|
|
|
|
|
|
```bash
|
2022-08-12 18:23:03 +02:00
|
|
|
yarn preview
|
2022-08-11 09:57:51 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.
|