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

https://github.com/nicolaspadari/nuxt-template

Personal Nuxt 3 template
https://github.com/nicolaspadari/nuxt-template

nuxt3 template typescript unocss vue3

Last synced: 7 months ago
JSON representation

Personal Nuxt 3 template

Awesome Lists containing this project

README

          

Personal Nuxt 3 template



## Usage

Clone to local:
```sh
$ npx degit NicolaSpadari/nuxt-template my-nuxt-app
```

Install dependencies:
```sh
$ ni # or pnpm install
```

Run project:
```sh
$ nr dev # or pnpm run dev
```

## Usage with Docker

Build container:
```sh
docker build -t my-nuxt-app .
```

Run static generated project:
```
docker run -it -p 3000:80 --name my-nuxt-app --rm --init my-nuxt-app
```