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-depsStart the development server on http://localhost:3000
npm run devBuild the application for production (this project only uses static pages):
npm run generateLocally preview production build:
docker run --name test --rm -p 80:80 -v $(pwd)/dist:/usr/share/nginx/html/:ro nginxCheck out the deployment documentation for more information.