Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AlexSwtlsk/nuxt4-custom
⚡️ Minimal Nuxt4 template with Tailwindcss, HeroIcons, Vite & Vitest and some custom ESLint rules
https://github.com/AlexSwtlsk/nuxt4-custom
ci eslint github-actions heroicons nuxt nuxt3 nuxt3-starter nuxt4 nuxt4-starter nuxtjs tailwindcss template vite vitest vue
Last synced: 17 days ago
JSON representation
⚡️ Minimal Nuxt4 template with Tailwindcss, HeroIcons, Vite & Vitest and some custom ESLint rules
- Host: GitHub
- URL: https://github.com/AlexSwtlsk/nuxt4-custom
- Owner: AlexSwtlsk
- Created: 2022-03-31T13:14:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T08:51:33.000Z (2 months ago)
- Last Synced: 2024-10-21T12:05:43.653Z (2 months ago)
- Topics: ci, eslint, github-actions, heroicons, nuxt, nuxt3, nuxt3-starter, nuxt4, nuxt4-starter, nuxtjs, tailwindcss, template, vite, vitest, vue
- Language: TypeScript
- Homepage: https://nuxt3-custom.netlify.app
- Size: 863 KB
- Stars: 10
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
We recommend to look at the [documentation](https://v3.nuxtjs.org).
## Setup
Make sure to install the dependencies
```bash
yarn install
```## Development
Start the development server on http://localhost:3000
```bash
yarn dev
```## Production
Build the application for production:
```bash
yarn build
```Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment).
## Docker
```bash
docker build . -t nuxt-app
docker run -p 8080:3000 -d nuxt-app
```