unocss-nuxt-ui
v1.2.1
Published
Use UnoCSS with Nuxt UI without Tailwind CSS
Maintainers
Readme
unocss-nuxt-ui
Use UnoCSS in place of the Tailwind CSS dependency expected by @nuxt/ui.
This module is built for compatibility first. It does not only swap presets. It also handles Nuxt UI runtime CSS, keyframes, generated theme files, and app.config.ts-driven theme overrides so that @nuxt/ui keeps behaving as expected.
This project is inspired by lehuuphuc/unocss-preset-nuxt-ui and brought together through vibe coding.
What It Does
- Registers
@unocss/nuxtwithwind3: false,wind4: false, andnuxtLayers: falsedefaults - Ensures the UnoCSS config includes:
presetNuxtUI()presetWind4(...)transformerDirectives()transformerVariantGroup({ separators: [':'] })
- Removes the Tailwind Vite plugin that
@nuxt/uiwould otherwise inject - Injects the compatibility CSS and
@nuxt/uiruntime keyframes needed by the UI package - Injects runtime color variables derived from
app.config.ts - Automatically scans generated
.nuxt/ui/*.tstheme files andapp.config.*files across all Nuxt layers via optimized regex patterns
Requirements
nuxt >= 4.1.0@nuxt/ui >= 4.0.0unocss >= 66.7.0@unocss/nuxt >= 66.7.0
Install
npx nuxt module add unocss-nuxt-uiOr install manually:
pnpm add unocss-nuxt-ui unocss @unocss/nuxtThen enable the module:
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['unocss-nuxt-ui'],
})@nuxt/ui and @unocss/nuxt are declared as module dependencies, so you do not need to list them manually unless you want to be explicit.
Change assets/styles/main.css from
@import 'tailwindcss';
@import '@nuxt/ui';
@theme static {
--font-sans: 'Public Sans', sans-serif;
}to
:root {
--font-sans: 'Public Sans', sans-serif;
}Nuxt UI Component Detection
You can enable Nuxt UI component detection to reduce the generated CSS size:
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['unocss-nuxt-ui'],
ui: {
experimental: {
componentDetection: true,
},
},
})The module automatically handles the scanning of the relevant generated files in both development and production. You do not need to add custom scan globs in uno.config.ts for Nuxt UI theme files.
Working With uno.config.ts
If your app already has a uno.config.ts, keep it. Import the generated module config from ./.nuxt/uno.config.mjs and merge your local config on top of it.
This is the recommended setup for the UnoCSS VS Code extension as well, because the extension can load your project-level uno.config.ts directly and still see the generated Nuxt UI config.
Example:
// uno.config.ts
import { defineConfig, mergeConfigs } from 'unocss'
import uiUnoConfig from './.nuxt/uno.config.mjs'
export default mergeConfigs([
uiUnoConfig,
defineConfig({
shortcuts: {
'btn-soft': 'px-3 py-2 rounded-md',
},
}),
])app.config.ts Support
Nuxt UI stores a large part of its theme outside Vue SFCs, and user overrides are merged through app.config.ts. This module automatically scans:
- Generated
.nuxt/ui/*.tstheme files - Generated
.nuxt/app.config.*virtual files - Source
app.config.*files from all Nuxt layers
This allows utilities referenced in theme overrides to be correctly processed by UnoCSS:
// app.config.ts
export default defineAppConfig({
ui: {
button: {
slots: {
base: 'tracking-[0.3em]',
},
},
},
})Compatibility Notes
- This module does not add any additional Tailwind CSS features that are not yet supported by UnoCSS
presetWind4. - By default, this module fills in, as much as possible, syntax used by Nuxt UI that is not directly supported by
presetWind4.
Exported Presets
The package also exports the core preset for non-module usage:
import { defineConfig, presetWind4 } from 'unocss'
import { presetNuxtUI } from 'unocss-nuxt-ui/preset'
export default defineConfig({
presets: [
presetNuxtUI(),
presetWind4(),
],
})Local Development
pnpm install
pnpm run dev:prepare
pnpm run dev
pnpm run dev:build
pnpm run test
pnpm run test:types
pnpm run lint