7 lines
186 B
TypeScript
7 lines
186 B
TypeScript
|
|
import type { Plugin } from 'vite';
|
||
|
|
import WindiCSS from 'vite-plugin-windicss';
|
||
|
|
|
||
|
|
export function configWindiCssPlugin(): Plugin[] {
|
||
|
|
return (WindiCSS() as Plugin[]).filter(Boolean);
|
||
|
|
}
|