11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
import type { PluginOption } from 'vite';
|
|
import UnoCSS from 'unocss/vite';
|
|
|
|
export default [
|
|
// https://github.com/antfu/unocss
|
|
// see uno.config.ts for config
|
|
UnoCSS({
|
|
checkImport: true,
|
|
}),
|
|
] satisfies PluginOption;
|