mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-10 05:59:35 +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,
|
|
},
|
|
});
|
|
}
|