Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terrnit-collective/nuxt3-template
Nuxt 3 template with eslint, typescript and tailwind css setups
https://github.com/terrnit-collective/nuxt3-template
eslint nuxt nuxt3-template tailwindcss themes typescript
Last synced: 6 days ago
JSON representation
Nuxt 3 template with eslint, typescript and tailwind css setups
- Host: GitHub
- URL: https://github.com/terrnit-collective/nuxt3-template
- Owner: terrnit-collective
- Created: 2024-03-24T16:09:55.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-25T02:12:29.000Z (11 months ago)
- Last Synced: 2024-08-19T11:41:06.839Z (6 months ago)
- Topics: eslint, nuxt, nuxt3-template, tailwindcss, themes, typescript
- Language: Vue
- Homepage: https://nuxt3-template-nine.vercel.app
- Size: 110 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
#### Typescript, Eslint and Tailwind css## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install# bun
bun install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev# bun
bun run dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build# bun
bun run build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview# bun
bun run preview
```