Windi CSS 依靠对源文件进行静态扫描和提取来找到你使用的工具类并为你按需生成相应的 CSS。类似于 Tailwind 的清除限制,为了使 Windi CSS 准确地检测和生成,你需要使用工具类的静态全名。例如,
字符串拼接的部分不能被静态地提取:
<div class="text-${ active ? 'green' : 'orange' }-400"></div>
需使用工具类的全名来代替:
<div class="${ active ? 'text-green-400' : 'text-orange-400' }"></div>
有时,你在必须使用动态拼接:
<div class="p-${size}"></div>
为此,你将需要在 windi.config.js
的配置项 safelist
中列举可能的组合。
import { defineConfig } from 'windicss/helpers'
export default defineConfig({
safelist: 'p-1 p-2 p-3 p-4',
})
或者采用更加灵活的方式:
import { defineConfig } from 'windicss/helpers'
function range(size, startAt = 1) {
return Array.from(Array(size).keys()).map(i => i + startAt)
}
export default defineConfig({
safelist: [
range(3).map(i => `p-${i}`), // p-1 to p-3
range(10).map(i => `mt-${i}`), // mt-1 to mt-10
],
})
在 dev-server/build 过程开始时,Windi CSS 将会扫描你的源码并提取出你使用的工具类。 默认情况下,它会扫描在 src/
目录下扩展名为 vue, html, mdx, pug, jsx, tsx
的文件。
如果你想启用/禁用对其他文件类型或位置的扫描,你可以使用 include
以及 exclude
选项进行配置:
import { defineConfig } from 'windicss/helpers'
export default defineConfig({
extract: {
// accepts globs and file paths relative to project root
include: [
'index.html',
'src/**/*.{vue,html,jsx,tsx}',
],
exclude: [
'node_modules/**/*',
'.git/**/*',
],
},
})
预检样式(style reseting) 也是通过扫描按需启用的。
你可以在配置中完全禁用它:
import { defineConfig } from 'windicss/helpers'
export default defineConfig({
preflight: false,
})
或者通过白名单(safelist)进行启用它:
import { defineConfig } from 'windicss/helpers'
export default defineConfig({
preflight: {
safelist: 'h1 h2 h3 p img',
},
})