An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

![A list of specifications of the devcontainer](/public/Nuxt-Minimal-DevContainer-Starter.png)

# 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.