跳至内容

预设

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

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

my-preset.ts
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
  }
})

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

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

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

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

在 MIT 许可下发布。