kidArtExpo/uno.config.js
2024-08-06 17:07:36 +08:00

20 lines
471 B
JavaScript

/*
// uno.config.ts
import { defineConfig, presetUno,presetWind , presetAttributify, presetIcons } from 'unocss'
export default defineConfig({
presets: [
presetWind(), // 使用默认的 UnoCSS 预设
presetAttributify(), // 支持属性模式
presetIcons()
],
/!* rules: [
[/^p-(\d+)$/, (match) => ({padding: `${match[1]}px`})
],
[/^m-(\d+)$/, (match) => ({padding: `${match[1]}px`})
]
]*!/
})
*/