Files
nuxtui_lab/README.md
suricatingss 3ea91d9058 ez deploy
2025-12-05 20:45:01 +00:00

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.