2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 06:47:20 +08:00
Files
panel/web/uno.config.ts
耗子 40cc33e61e feat: 实现图标本地加载
目前会导致打包体积失控,但是没有找到更好的方案。
2025-12-18 04:33:15 +08:00

32 lines
1019 B
Go

import type { UserConfig } from 'unocss'
import { defineConfig, presetAttributify, presetWind4 } from 'unocss'
const config: UserConfig = {
content: {
pipeline: {
exclude: ['node_modules', '.git', '.github', '.vscode', 'build', 'dist', 'public', 'types']
}
},
presets: [presetWind4({ dark: 'class' }), presetAttributify()],
shortcuts: [
['wh-full', 'w-full h-full'],
['f-c-c', 'flex justify-center items-center'],
['flex-col', 'flex flex-col'],
['absolute-lt', 'absolute left-0 top-0'],
['absolute-lb', 'absolute left-0 bottom-0'],
['absolute-rt', 'absolute right-0 top-0'],
['absolute-rb', 'absolute right-0 bottom-0'],
['absolute-center', 'absolute-lt f-c-c wh-full'],
['text-ellipsis', 'truncate']
],
rules: [
[/^bc-(.+)$/, ([, color]) => ({ 'border-color': `#${color}` })],
[
'card-shadow',
{ 'box-shadow': '0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017' }
]
]
}
export default defineConfig(config)