https://github.com/eduplessis/nuxt-container
Nuxt minimal DevContainer starter template
https://github.com/eduplessis/nuxt-container
devcontainer devcontainer-template nuxt nuxt-template nuxtjs starter-template
Last synced: 5 months ago
JSON representation
Nuxt minimal DevContainer starter template
- Host: GitHub
- URL: https://github.com/eduplessis/nuxt-container
- Owner: eduplessis
- Created: 2024-12-02T11:36:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-15T20:44:23.000Z (about 1 year ago)
- Last Synced: 2025-02-02T11:28:38.170Z (about 1 year ago)
- Topics: devcontainer, devcontainer-template, nuxt, nuxt-template, nuxtjs, starter-template
- Language: TypeScript
- Homepage:
- Size: 960 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Nuxt Minimal DevContainer Starter
## What is different from Nuxt starter?
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](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Installation
```bash
npx giget@latest gh:eduplessis/nuxt-container
```
## Setup
Make sure to install dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.