Look at the nuxt 3 documentation to learn more.
This creates the container if it doesn't already exist
lando startThis should happen automatically with how the .lando.yml file is configured. If you need to run the install manually, use this command:
lando yarnUseful if any container configuration gets messed up
lando rebuild -ylando restart -ylando stopBuild the application for production:
lando yarn buildLocally preview the production build:
lando yarn previewInstall dependencies:
# yarn
yarnStart the development server on http://localhost:3000 and automatically open it in your default browser
yarn dev -oBuild the application for production:
yarn buildLocally preview production build:
yarn previewCheckout the deployment documentation for more information.