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

13 lines
236 B
TypeScript
Raw Normal View History

import type { Plugin } from 'vite';
2021-02-25 20:17:08 +08:00
import windiCSS from 'vite-plugin-windicss';
export function configWindiCssPlugin(): Plugin[] {
return windiCSS({
2021-02-23 00:31:10 +08:00
safelist: 'no-select',
preflight: {
enableAll: true,
},
});
}