Look at the Nuxt documentation to learn more.
Start by enabling Corepack (built-in Node.js tool), if it isn't already; this will add (or override) the yarn binary to your PATH:
corepack enableMake sure to install dependencies:
yarn installStart the development server on http://localhost:3000:
yarn devBuild the application for production:
yarn buildLocally preview production build:
yarn previewCheck out the deployment documentation for more information.