This starter is based on the Nuxt starter and uses devcontainer for the development environment. So you don't need to install all the different node versions on your local machine.
You can use npm, pnpm or yarn to install dependencies. Sorry for the bun lovers.
Look at the Nuxt documentation to learn more.
npx giget@latest gh:eduplessis/nuxt-container
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
Check out the deployment documentation for more information.