Starter template for Nuxt 3 with Tailwind, Pinia, Vitest, ESLint and Prettier
Demo: nuxt-3-starter.lloyd.cx/
This project is fairly minimal, and includes:
✨ Nuxt project is created with v3 template. Next steps:
› cd nuxt-app
› Install dependencies with npm install or yarn install or pnpm install
› Start development server with npm run dev or yarn dev or pnpm run dev
The following directories have been created:
assets/
components/
layouts/
pages/
plugins/
public/
stores/
tests/
@nuxtjs/tailwindcss
)@pinia/nuxt
)vitest
, @vue/test-utils
, etc.)eslint
, @nuxtjs/eslint-config-typescript
, etc.)prettier
, eslint-plugin-prettier
, etc.)This is a standard Nuxt 3 project. If you're new to Nuxt, you can get started by reading the docs.
Open the project folder:
cd nuxt-app/
Install the dependencies:
yarn install
npm install
pnpm install --shamefully-hoist
Start the development server:
yarn dev -o
npm run dev -- -o
pnpm dev -o
This project is licensed under the MIT License - see the LICENSE file for details.