16 lines
391 B
TypeScript
16 lines
391 B
TypeScript
|
import { defineConfig } from 'unocss'
|
||
|
import { presetAttributify, presetIcons } from 'unocss'
|
||
|
export default defineConfig({
|
||
|
// 预设
|
||
|
presets: [
|
||
|
presetAttributify(), // 启用属性模式
|
||
|
presetIcons(), // 启用图标
|
||
|
],
|
||
|
// 自定义规则
|
||
|
rules: [
|
||
|
],
|
||
|
// 快捷方式
|
||
|
shortcuts: {
|
||
|
'btn': 'px-4 py-2 rounded-lg bg-blue-500 text-white hover:bg-blue-600',
|
||
|
},
|
||
|
})
|