37 lines
529 B
Markdown
37 lines
529 B
Markdown
# 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
|
|
yarn dev
|
|
```
|
|
|
|
## Production
|
|
|
|
Build the application for production:
|
|
|
|
```bash
|
|
yarn build
|
|
```
|
|
|
|
Locally preview production build:
|
|
|
|
```bash
|
|
yarn preview
|
|
```
|
|
|
|
Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.
|