44 lines
735 B
Markdown
44 lines
735 B
Markdown
# Nuxt Minimal Starter
|
|
|
|
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
|
|
|
|
## Setup
|
|
|
|
Make sure to install dependencies:
|
|
|
|
```bash
|
|
npm i -g pnpm # (updates your pnpm :D)
|
|
pnpm install
|
|
```
|
|
(this project uses PNPM)
|
|
|
|
## Development Server
|
|
|
|
Start the development server on `http://localhost:3000`:
|
|
|
|
```bash
|
|
pnpm dev
|
|
```
|
|
|
|
## Deployment
|
|
|
|
```bash
|
|
pnpm build
|
|
```
|
|
|
|
Locally preview production build:
|
|
|
|
```bash
|
|
pnpm preview
|
|
```
|
|
|
|
Start the production server
|
|
```bash
|
|
node .output/server/index.mjs
|
|
```
|
|
|
|
### Check out the docker file to turn your app into a container for easy deployment!
|
|
|
|
|
|
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
|