20 lines
471 B
JavaScript
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`})
|
|
]
|
|
]*!/
|
|
})
|
|
*/
|