13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
|
|
import windiCSS from 'vite-plugin-windicss';
|
||
|
|
|
||
|
|
import type { Plugin } from 'vite';
|
||
|
|
|
||
|
|
export function configWindiCssPlugin(): Plugin[] {
|
||
|
|
return windiCSS({
|
||
|
|
safelist: 'shadow shadow-xl',
|
||
|
|
preflight: {
|
||
|
|
enableAll: true,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}
|