mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2026-05-22 06:17:47 +00: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,
|
|
},
|
|
});
|
|
}
|