Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# npm (--legacy-peer-deps is needed for pinia)
npm install --legacy-peer-deps
Start the development server on http://localhost:3000
npm run dev
Build the application for production (this project only uses static pages):
npm run generate
Locally preview production build:
docker run --name test --rm -p 80:80 -v $(pwd)/dist:/usr/share/nginx/html/:ro nginx
Check out the deployment documentation for more information.