mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-23 17:50:22 +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,
|
|
},
|
|
});
|
|
}
|