A modern Nuxt.js template with Nuxt 4 compatibility features, Tailwind CSS 4 integration, nuxt eslint module, and custom fetch implementation. Includes dark/light mode support, responsive design, and full TypeScript integration for optimal developer experience
āāā app/
ā āāā components/ # UI components
ā āāā config/ # Frontend configurations
ā āāā pages/ # Application pages
ā āāā types/ # TypeScript types for frontend
ā āāā utils/ # Utility functions for client
āāā server/
ā āāā api/ # API endpoints
ā āāā configs/ # Server configurations
ā āāā types/ # TypeScript types for server
ā āāā utils/ # Utility functions for server
āāā shared/ # Shared types and utilities
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview