Skip to content

预设

预设是将合并到主配置中的部分配置。

在编写预设时,我们通常导出一个构造函数,你可以要求一些预设特定的选项。例如:

ts
// my-preset.ts
import { Preset, definePreset } from 'unocss'

export default definePreset((options?: MyPresetOptions) => {
  return {
    name: 'my-preset',
    rules: [
      // ...
    ],
    variants: [
      // ...
    ],
    // 它支持你在根配置中大多数可能有的配置
  }
})

然后用户可以像这样使用它:

ts
// uno.config.ts
import { defineConfig } from 'unocss'
import myPreset from './my-preset'

export default defineConfig({
  presets: [
    myPreset({ /* preset options */ }),
  ],
})

你可以查看官方预设社区预设 获取更多示例。

基于 MIT 许可发布