mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-01-24 12:20:18 +08:00
13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
import type { Plugin } from 'vite';
|
|
|
|
import windiCSS from 'vite-plugin-windicss';
|
|
|
|
export function configWindiCssPlugin(): Plugin[] {
|
|
return windiCSS({
|
|
safelist: 'no-select',
|
|
preflight: {
|
|
enableAll: true,
|
|
},
|
|
});
|
|
}
|