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