windicss.ts 236 字节
Newer Older
1 2 3 4 5 6
import windiCSS from 'vite-plugin-windicss';

import type { Plugin } from 'vite';

export function configWindiCssPlugin(): Plugin[] {
  return windiCSS({
V
vben 已提交
7
    safelist: 'no-select',
8 9 10 11 12
    preflight: {
      enableAll: true,
    },
  });
}