• Stars
    star
    213
  • Rank 185,410 (Top 4 %)
  • Language Vue
  • License
    MIT License
  • Created about 3 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Nuxt Tailwind Starter Kit

Nuxt 3 Tailwind Kit

Nuxt 3 + Tailwind Starter Kit.

Features

Directory Structure

.
โ”œโ”€โ”€ apps              # Nuxt Layer
โ”‚   โ””โ”€โ”€ admin         # Admin Panel
โ”‚   โ””โ”€โ”€ auth          # Authentication
โ”‚   โ””โ”€โ”€ blog          # Blog
โ”‚   โ””โ”€โ”€ docs          # Documentation
โ”‚   โ””โ”€โ”€ landing       # Landing Page
โ”‚   โ””โ”€โ”€ store         # Store
โ”œโ”€โ”€ components        # Global Components
โ”œโ”€โ”€ content           # Nuxt Content
โ”œโ”€โ”€ layouts           # Layouts
โ”œโ”€โ”€ plugins           # Plugins
โ”œโ”€โ”€ stores            # Stores
โ”œโ”€โ”€ ui                # UI Component Library
โ”œโ”€โ”€ app.config.ts     # Application Config

Try it Now

Stackblitz

Online Demo

GitHub Template

Create a repo from this template on GitHub.

Local

If you prefer to do it manually with the cleaner git history

npx nuxi init -t gh:gravitano/nuxt3-tailwind-kit my-nuxt-app
cd my-nuxt-app
pnpm
pnpm dev

Development

We recommend to look at the documentation.

Make sure to install the dependencies

pnpm install

Start the development server on http://localhost:3000

pnpm dev

Production

Build the application for production:

pnpm build

Checkout the deployment documentation.