Vite Plugin
The Vite plugin ships with the unocss
package.
Installation
pnpm add -D unocss
pnpm add -D unocss
yarn add -D unocss
yarn add -D unocss
npm install -D unocss
npm install -D unocss
Install the plugin:
// vite.config.ts
import UnoCSS from 'unocss/vite'
import { defineConfig } from 'vite'
export default defineConfig({
plugins: [
UnoCSS(),
],
})
// vite.config.ts
import UnoCSS from 'unocss/vite'
import { defineConfig } from 'vite'
export default defineConfig({
plugins: [
UnoCSS(),
],
})
Create a uno.config.ts
file:
// uno.config.ts
import { defineConfig } from 'unocss'
export default defineConfig({
// ...UnoCSS options
})
// uno.config.ts
import { defineConfig } from 'unocss'
export default defineConfig({
// ...UnoCSS options
})
Add virtual:uno.css
to your main entry:
// main.ts
import 'virtual:uno.css'
// main.ts
import 'virtual:uno.css'
Modes
The Vite plugin comes with a set of modes that enable different behaviors.
global
(default)
This is the default mode for the plugin: in this mode you need to add the import of uno.css
on your entry point.
This mode enables a set of Vite plugins for build
and for dev
with HMR
support.
The generated css
will be a global stylesheet injected on the index.html
.
vue-scoped
This mode will inject generated CSS to Vue SFCs <style scoped>
for isolation.
svelte-scoped
This mode will inject generated CSS to Svelte's <style>
for isolation.
shadow-dom
Since Web Components
uses Shadow DOM
, there is no way to style content directly from a global stylesheet (unless you use custom css vars
, those will penetrate the Shadow DOM
), you need to inline the generated css by the plugin into the Shadow DOM
style.
To inline the generated css, you only need to configure the plugin mode to shadow-dom
and include @unocss-placeholder
magic placeholder on each web component style css block. If you are defining your Web Components in Vue SFCs and want to define custom styles alongside UnoCSS, you can wrap placeholder in a CSS comment to avoid syntax errors in your IDE.
per-module
(experimental)
This mode will generate a CSS sheet for each module, can be scoped.
dist-chunk
(experimental)
This mode will generate a CSS sheet for each code chunk on build, great for MPA.
Edit classes in DevTools
Because of limitation of "on-demand" where the DevTools don’t know those you haven’t used in your source code yet. So if you want to try how things work by directly changing the classes in DevTools, just add the following lines to your main entry.
import 'uno.css'
import 'virtual:unocss-devtools'
import 'uno.css'
import 'virtual:unocss-devtools'
WARNING
Please use it with caution, under the hood we use MutationObserver
to detect the class changes. Which means not only your manual changes but also the changes made by your scripts will be detected and included in the stylesheet. This could cause some misalignment between dev and the production build when you add dynamic classes based on some logic in script tags. We recommended adding your dynamic parts to the safelist or setup UI regression tests for your production build if possible.
Frameworks
Some UI/App frameworks have some caveats that must be fixed to make it work, if you're using one of the following frameworks, just apply the suggestions.
React
If you're using @vitejs/plugin-react
:
// vite.config.js
import UnoCSS from 'unocss/vite'
import React from '@vitejs/plugin-react'
export default {
plugins: [
React(),
UnoCSS(),
],
}
// vite.config.js
import UnoCSS from 'unocss/vite'
import React from '@vitejs/plugin-react'
export default {
plugins: [
React(),
UnoCSS(),
],
}
If you're using @unocss/preset-attributify
you should remove tsc
from the build
script.
If you are using @vitejs/plugin-react
with @unocss/preset-attributify
, you must add the plugin before @vitejs/plugin-react
.
// vite.config.js
import UnoCSS from 'unocss/vite'
import React from '@vitejs/plugin-react'
export default {
plugins: [
UnoCSS(),
React(),
],
}
// vite.config.js
import UnoCSS from 'unocss/vite'
import React from '@vitejs/plugin-react'
export default {
plugins: [
UnoCSS(),
React(),
],
}
You have a React
example project on examples/vite-react directory using both plugins, check the scripts on package.json
and its Vite configuration file.
Preact
If you're using @preact/preset-vite
:
// vite.config.js
import Preact from '@preact/preset-vite'
import UnoCSS from 'unocss/vite'
export default {
plugins: [
UnoCSS(),
Preact(),
],
}
// vite.config.js
import Preact from '@preact/preset-vite'
import UnoCSS from 'unocss/vite'
export default {
plugins: [
UnoCSS(),
Preact(),
],
}
or if you're using @prefresh/vite
:
// vite.config.js
import Prefresh from '@prefresh/vite'
import UnoCSS from 'unocss/vite'
export default {
plugins: [
UnoCSS(),
Prefresh(),
],
}
// vite.config.js
import Prefresh from '@prefresh/vite'
import UnoCSS from 'unocss/vite'
export default {
plugins: [
UnoCSS(),
Prefresh(),
],
}
If you're using @unocss/preset-attributify
you should remove tsc
from the build
script.
You have a Preact
example project on examples/vite-preact directory using both plugins, check the scripts on package.json
and its Vite configuration file.
Svelte
You must add the plugin before @sveltejs/vite-plugin-svelte
.
To support class:foo
and class:foo={bar}
add the plugin and configure extractorSvelte
on extractors
option.
You can use simple rules with class:
, for example class:bg-red-500={foo}
or using shortcuts
to include multiples rules, see src/App.svelte
on linked example project below.
// vite.config.js
import { svelte } from '@sveltejs/vite-plugin-svelte'
import UnoCSS from 'unocss/vite'
import extractorSvelte from '@unocss/extractor-svelte'
export default {
plugins: [
UnoCSS({
extractors: [
extractorSvelte
],
/* more options */
}),
svelte(),
],
}
// vite.config.js
import { svelte } from '@sveltejs/vite-plugin-svelte'
import UnoCSS from 'unocss/vite'
import extractorSvelte from '@unocss/extractor-svelte'
export default {
plugins: [
UnoCSS({
extractors: [
extractorSvelte
],
/* more options */
}),
svelte(),
],
}
You have a Vite + Svelte
example project on examples/vite-svelte directory.
Sveltekit
To support class:foo
and class:foo={bar}
add the plugin and configure extractorSvelte
on extractors
option.
You can use simple rules with class:
, for example class:bg-red-500={foo}
or using shortcuts
to include multiples rules, see src/routes/+layout.svelte
on linked example project below.
// vite.config.js
import { sveltekit } from '@sveltejs/kit/vite'
import UnoCSS from 'unocss/vite'
import extractorSvelte from '@unocss/extractor-svelte'
/** @type {import('vite').UserConfig} */
const config = {
plugins: [
UnoCSS({
extractors: [
extractorSvelte()
],
/* more options */
}),
sveltekit(),
],
}
// vite.config.js
import { sveltekit } from '@sveltejs/kit/vite'
import UnoCSS from 'unocss/vite'
import extractorSvelte from '@unocss/extractor-svelte'
/** @type {import('vite').UserConfig} */
const config = {
plugins: [
UnoCSS({
extractors: [
extractorSvelte()
],
/* more options */
}),
sveltekit(),
],
}
You have a SvelteKit
example project in examples/sveltekit directory.
Svelte/SvelteKit Scoped Mode
Adding mode: 'svelte-scoped'
to your UnoCSS config options will place styles right inside of each component's style block instead of in a global uno.css
file. Due to automatic class name compilation, classes that depend on attributes in parent components (like dir="rtl"
or .dark
) will just work. Also, you can pass classes to children components as long as you pass them using a prop named class
, e.g. class="text-lg bg-red-100"
.
Support for class:foo
and class:foo={bar}
is already included. There is no need to add the extractorSvelte
when using svelte-scoped
mode.
Because there is no import 'uno.css'
in your root +layout.svelte
preflights and safelist classes have no where to be placed. Add the uno:preflights
or uno:safelist
attributes to the style block of any component where you want to place them. To use both globally, add the following to your root +layout.svelte
:
<style uno:preflights uno:safelist global></style>
<style uno:preflights uno:safelist global></style>
Alternatively, if you only want them to apply to a specific component just add them to that component's style
tag and don't add the global
attribute.
// vite.config.js
import { sveltekit } from '@sveltejs/kit/vite'
import UnoCSS from 'unocss/vite'
/** @type {import('vite').UserConfig} */
const config = {
plugins: [
UnoCSS({
mode: 'svelte-scoped',
/* options */
}),
sveltekit(),
],
}
// vite.config.js
import { sveltekit } from '@sveltejs/kit/vite'
import UnoCSS from 'unocss/vite'
/** @type {import('vite').UserConfig} */
const config = {
plugins: [
UnoCSS({
mode: 'svelte-scoped',
/* options */
}),
sveltekit(),
],
}
There is a SvelteKit scoped
example project in the examples/sveltekit-scoped directory with more detailed explanation of how this mode works.
Web Components
To work with web components you need to enable shadow-dom
mode on the plugin.
Don't forget to remove the import for uno.css
since the shadow-dom
mode will not expose it and the application will not work.
// vite.config.js
import UnoCSS from 'unocss/vite'
export default {
plugins: [
UnoCSS({
mode: 'shadow-dom',
/* more options */
}),
],
}
// vite.config.js
import UnoCSS from 'unocss/vite'
export default {
plugins: [
UnoCSS({
mode: 'shadow-dom',
/* more options */
}),
],
}
On each web component
just add @unocss-placeholder
to its style css block:
const template = document.createElement('template')
template.innerHTML = `
<style>
:host {...}
@unocss-placeholder
</style>
<div class="m-1em">
...
</div>
`
const template = document.createElement('template')
template.innerHTML = `
<style>
:host {...}
@unocss-placeholder
</style>
<div class="m-1em">
...
</div>
`
If you're using Lit:
@customElement('my-element')
export class MyElement extends LitElement {
static styles = css`
:host {...}
@unocss-placeholder
`
// ...
}
@customElement('my-element')
export class MyElement extends LitElement {
static styles = css`
:host {...}
@unocss-placeholder
`
// ...
}
You have a Web Components
example project on examples/vite-lit directory.
::part
built-in support
You can use ::part
since the plugin supports it via shortcuts
and using part-[<part-name>]:<rule|shortcut>
rule from preset-mini
, for example using it with simple rules like part-[<part-name>]:bg-green-500
or using some shortcut
: check src/my-element.ts
on linked example project below.
The part-[<part-name>]:<rule|shortcut>
will work only with this plugin using the shadow-dom
mode.
The plugin uses nth-of-type
to avoid collisions with multiple parts in the same web component and for the same parts on distinct web components, you don't need to worry about it, the plugin will take care for you.
// vite.config.js
import UnoCSS from 'unocss/vite'
export default {
plugins: [
UnoCSS({
mode: 'shadow-dom',
shortcuts: [
{ 'cool-blue': 'bg-blue-500 text-white' },
{ 'cool-green': 'bg-green-500 text-black' },
],
/* more options */
}),
],
}
// vite.config.js
import UnoCSS from 'unocss/vite'
export default {
plugins: [
UnoCSS({
mode: 'shadow-dom',
shortcuts: [
{ 'cool-blue': 'bg-blue-500 text-white' },
{ 'cool-green': 'bg-green-500 text-black' },
],
/* more options */
}),
],
}
then in your web components:
// my-container-wc.ts
const template = document.createElement('template')
template.innerHTML = `
<style>
@unocss-placeholder
</style>
<my-wc-with-parts class="part-[cool-part]:cool-blue part-[another-cool-part]:cool-green">...</my-wc-with-parts>
`
// my-container-wc.ts
const template = document.createElement('template')
template.innerHTML = `
<style>
@unocss-placeholder
</style>
<my-wc-with-parts class="part-[cool-part]:cool-blue part-[another-cool-part]:cool-green">...</my-wc-with-parts>
`
// my-wc-with-parts.ts
const template = document.createElement('template')
template.innerHTML = `
<style>
@unocss-placeholder
</style>
<div>
<div part="cool-part">...</div>
<div part="another-cool-part">...</div>
</div>
`
// my-wc-with-parts.ts
const template = document.createElement('template')
template.innerHTML = `
<style>
@unocss-placeholder
</style>
<div>
<div part="cool-part">...</div>
<div part="another-cool-part">...</div>
</div>
`
Solid
// vite.config.js
import solidPlugin from 'vite-plugin-solid'
import UnoCSS from 'unocss/vite'
export default {
plugins: [
solidPlugin(),
UnoCSS({
/* options */
}),
],
}
// vite.config.js
import solidPlugin from 'vite-plugin-solid'
import UnoCSS from 'unocss/vite'
export default {
plugins: [
solidPlugin(),
UnoCSS({
/* options */
}),
],
}
You have a Vite + Solid
example project on examples/vite-solid directory.
Elm
You need to add the vite-plugin-elm
plugin before UnoCSS's plugin.
// vite.config.js
import { defineConfig } from 'vite'
import Elm from 'vite-plugin-elm'
import UnoCSS from 'unocss/vite'
export default defineConfig({
plugins: [
Elm(),
UnoCSS(),
],
})
// vite.config.js
import { defineConfig } from 'vite'
import Elm from 'vite-plugin-elm'
import UnoCSS from 'unocss/vite'
export default defineConfig({
plugins: [
Elm(),
UnoCSS(),
],
})
You have a Vite + Elm
example project on examples/vite-elm directory.
License
- MIT License © 2021-PRESENT Anthony Fu