@iskala/create-nuxt-start
v1.0.25
Published
Start template with modules by Nuxt 3
Downloads
92
Readme
Nuxt 3 Minimal Starter
Look at the Nuxt 3 documentation to learn more.
Setup With Docker
Make sure to install the dependencies:
# Dev or Prod
docker build -t frontend --target dev .
# Run docker container (Add -d flag for no console watcher)
docker run -p 3000:3000 -v $(pwd):/var/www --name frontend frontend
Setup Development
Make sure to install the dependencies:
bun install
bun run dev
Setup Production
Build the application for production:
bun run build
bun run preview
Использовать pm2 или dumb-init для docker
Check out the deployment documentation for more information.