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