windicss.ts 236 B

123456789101112
  1. import type { Plugin } from 'vite';
  2. import windiCSS from 'vite-plugin-windicss';
  3. export function configWindiCssPlugin(): Plugin[] {
  4. return windiCSS({
  5. safelist: 'no-select',
  6. preflight: {
  7. enableAll: true,
  8. },
  9. });
  10. }