预设
预设是部分配置,将合并到主配置中。
在编写预设时,我们通常会导出一个构造函数,你可以向其请求一些预设特定的选项。例如
ts
import { definePreset, Preset } from 'unocss'
export default definePreset((options?: MyPresetOptions) => {
return {
name: 'my-preset',
rules: [
// ...
],
variants: [
// ...
],
// it supports most of the configuration you could have in the root config
}
})
然后用户可以像这样使用它
ts
import { defineConfig } from 'unocss'
import myPreset from './my-preset'
export default defineConfig({
presets: [
myPreset({ /* preset options */ }),
],
})