Look at the nuxt 3 documentation to learn more.
This creates the container if it doesn't already exist
lando start
This should happen automatically with how the .lando.yml file is configured. If you need to run the install manually, use this command:
lando yarn
Useful if any container configuration gets messed up
lando rebuild -y
lando restart -y
lando stop
Build the application for production:
lando yarn build
Locally preview the production build:
lando yarn preview
Install dependencies:
# yarn
yarn
Start the development server on http://localhost:3000 and automatically open it in your default browser
yarn dev -o
Build the application for production:
yarn build
Locally preview production build:
yarn preview
Checkout the deployment documentation for more information.