You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
436 B
15 lines
436 B
import { defineConfig } from "vite-plugin-windicss";
|
|
function range(size, startAt = 1) {
|
|
return Array.from(Array(size).keys()).map((i) => i + startAt);
|
|
}
|
|
export default defineConfig({
|
|
preflight: false,
|
|
safelist: [
|
|
range(30).map((i) => `p-${i}`), // p-1 to p-3
|
|
range(10).map((i) => `mt-${i}`), // mt-1 to mt-10
|
|
],
|
|
extract: {
|
|
include: ['src/**/*.{vue,html,jsx,tsx}'],
|
|
exclude: ['node_modules', '.git'],
|
|
},
|
|
});
|
|
|