Skip to content

Latest commit

 

History

History
89 lines (57 loc) · 1.4 KB

README.md

File metadata and controls

89 lines (57 loc) · 1.4 KB

Frontend Stuff

Look at the nuxt 3 documentation to learn more.

Netlify Status

Setup for Lando dev

Start Lando container

This creates the container if it doesn't already exist

lando start

Install dependencies

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

Rebuild container

Useful if any container configuration gets messed up

lando rebuild -y

Restart container without rebuilding

lando restart -y

Stop the container

lando stop

Production

Build the application for production:

lando yarn build

Locally preview the production build:

lando yarn preview

Setup for localhost dev

Install dependencies:

# yarn
yarn

Development Server

Start the development server on http://localhost:3000 and automatically open it in your default browser

yarn dev -o

Production

Build the application for production:

yarn build

Locally preview production build:

yarn preview

Checkout the deployment documentation for more information.