a Nuxt 3 starter template with a lot of useful features, integrated with TailwindCSS 3. Easy use and implemented in Nuxt Layer, you can extend this template with zero config.
Nuxt Awesome Starter v2 brings many changes, separating core component apps and main business logic into the /app
folder. and also provides the option to also be integrated with the nuxt layer to make it easier to bring all of our Awesome features and components to your project.
NOTES
- This Project using "pnpm" or "bun" as package manager
- this is Nuxt 3 Awesome Starter V2, you can check V1 in this link
![]() |
|
![]() |
![]() |
~/modules/awesome.ts
to use Nuxt Awesome Starter you can choose one of the following options:
nuxt 3 have a new feature called "Nuxt Layer", with this feature you can create a new project with a template that has been provided by the community. you can see on .demo
to see how to use this template with nuxt layer.
this is a simple way to use this template :
pnpm dlx nuxi@latest init my-app
pnpm add @nuxt-awesome/theme
extends: '@nuxt-awesome/theme'
on your nuxt.config.ts
file# nuxt.config.ts
export default defineNuxtConfig({
devtools: { enabled: true },
extends: [
'@nuxt-awesome/theme',
]
})
app.config.ts
to see what you can change on this template.app.vue
in root project if you want to use our nuxt awesome as root layout.you can direct to clone this repository and just make change on app/
folder as your main project folder.
git clone https://github.com/viandwi24/nuxt3-awesome-starter
pnpm install
pnpm dev