Look at the Nuxt documentation to learn more.
Make sure to install dependencies:
# npm
npm i
Running this will automatically trigger a postinstall
script that generates design tokens and favicons – everything needed for development.
Add the following entry to your /etc/hosts
file to enable local development:
127.0.0.1 development.varname.bg
Run the following command to generate SSL certificates for local development:
npm run generate:ssl
Start the development server on https://development.varname.bg:3000
:
# npm
npm run dev
Build the application for production:
# npm
npm run build:app
Locally preview site build:
# npm
npm run preview
Check out the deployment documentation for more information.