@unocss/vite
The Vite plugin for UnoCSS. Ships with the unocss
package.
Installation
npm i -D unocss
import Unocss from 'unocss/vite'
export default {
plugins: [
Unocss({ }),
],
}
Add uno.css
to your main entry:
import 'uno.css'
Presetless usage
This plugin does not come with any default presets.
If you are building a meta framework on top of UnoCSS, see this file for an example to bind the default presets.
npm i -D @unocss/vite
import Unocss from '@unocss/vite'
export default {
plugins: [
Unocss({
presets: [
],
}),
],
}
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 SFC's <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.
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.
"Design 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'
⚠️ 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.
virtual:unocss-devtools
will be an empty bundle in production.
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
WARNING: You should import the uno.css
virtual module using import 'virtual:uno.css'
instead import 'uno.css'
. When you start the dev server first time, you'll need to update some style module to get it working (we're trying to fix it).
If you're using @vitejs/plugin-react
:
import react from '@vitejs/plugin-react'
import Unocss from 'unocss/vite'
export default {
plugins: [
react(),
Unocss({
}),
],
}
or if you're using @vitejs/plugin-react-refresh
:
import reactRefresh from '@vitejs/plugin-react-refresh'
import Unocss from 'unocss/vite'
export default {
plugins: [
reactRefresh(),
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
.
import react from '@vitejs/plugin-react'
import Unocss from 'unocss/vite'
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
:
import preact from '@preact/preset-vite'
import Unocss from 'unocss/vite'
export default {
plugins: [
preact(),
Unocss({
}),
],
}
or if you're using @prefresh/vite
:
import prefresh from '@prefresh/vite'
import Unocss from 'unocss/vite'
export default {
plugins: [
prefresh(),
Unocss({
}),
],
}
If you're using @unocss/preset-attributify
you should remove tsc
from the build
script.
If you are using @preact/preset-vite
with @unocss/preset-attributify
, you must add the plugin before @preact/preset-vite
.
import preact from '@preact/preset-vite'
import Unocss from 'unocss/vite'
export default {
plugins: [
Unocss({
}),
preact(),
],
}
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 shorcuts
to include multiples rules, see src/App.svelte
on linked example project below.
import { svelte } from '@sveltejs/vite-plugin-svelte'
import Unocss from 'unocss/vite'
import { extractorSvelte } from '@unocss/core'
export default {
plugins: [
Unocss({
extractors: [extractorSvelte],
}),
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.
import { sveltekit } from '@sveltejs/kit/vite'
import UnoCSS from 'unocss/vite'
import { extractorSvelte } from '@unocss/core'
const config = {
plugins: [
UnoCSS({
extractors: [extractorSvelte],
}),
sveltekit(),
],
}
You have a SvelteKit
example project on 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 class 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>
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.
import { sveltekit } from '@sveltejs/kit/vite'
import UnoCSS from 'unocss/vite'
const config = {
plugins: [
UnoCSS({
mode: 'svelte-scoped',
}),
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.
import Unocss from 'unocss/vite'
export default {
plugins: [
Unocss({
mode: 'shadow-dom',
}),
],
}
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>
`
If you're using Lit:
@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.
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' },
],
}),
],
}
then in your web components:
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>
`
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
WARNING: You should import the uno.css
virtual module using import 'virtual:uno.css'
instead import 'uno.css'
. When you start the dev server first time, you'll need to update some style module to get it working (we're trying to fix it).
import solidPlugin from 'vite-plugin-solid'
import Unocss from 'unocss/vite'
export default {
plugins: [
solidPlugin(),
Unocss({
}),
],
}
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.
import { defineConfig } from 'vite'
import elmPlugin from 'vite-plugin-elm'
import Unocss from 'unocss/vite'
export default defineConfig({
plugins: [
elmPlugin(),
Unocss({
}),
],
})
You have a Vite + Elm
example project on examples/vite-elm directory.
License
MIT License © 2021-PRESENT Anthony Fu