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
- Host: GitHub
- URL: https://github.com/nicolaspadari/nuxt-template
- Owner: NicolaSpadari
- Created: 2023-04-26T13:23:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-20T09:31:54.000Z (7 months ago)
- Last Synced: 2025-03-24T03:37:30.027Z (7 months ago)
- Topics: nuxt3, template, typescript, unocss, vue3
- Language: TypeScript
- Homepage:
- Size: 910 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```