vben-admin-thin-next/build/vite/plugin/windicss.ts

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,
},
});
}