Vite-mode Nuxt with HMR. This guide covers the complete Nuxt setup for Nakshora 3.0.
Install#
terminal
npm install -D @nakshora/postcss postcssConfigure#
nuxt.config.ts
// nuxt.config.ts — Vite-mode
export default defineNuxtConfig({
postcss: {
plugins: { '@nakshora/postcss': { content: ['./components/**/*.vue', './pages/**/*.vue'] } },
},
});Verify#
terminal
npx nakshora doctorDoctor validates your config, checks that content globs match real files, and prints the engine version.
Troubleshooting#
- Run
nakshora doctorfirst — it catches 90% of setup mistakes.
Next#
Styling patterns: concepts/utility-first-methodology|utility-first methodology · performance: performance/index|performance guide.
