https://github.com/terrnit-collective/nuxt3-template
Nuxt 3, Eslint, Typescript and TailwindCSS template
https://github.com/terrnit-collective/nuxt3-template
eslint nuxt nuxt3-template tailwindcss themes typescript
Last synced: 3 months ago
JSON representation
Nuxt 3, Eslint, Typescript and TailwindCSS template
- Host: GitHub
- URL: https://github.com/terrnit-collective/nuxt3-template
- Owner: terrnit-collective
- Created: 2024-03-24T16:09:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-25T02:12:29.000Z (over 1 year ago)
- Last Synced: 2025-04-09T21:53:48.852Z (3 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
```