import { defineConfig, presetAttributify, presetIcons, presetTypography, presetUno, presetWebFonts, transformerDirectives, transformerVariantGroup } from 'unocss' // https://unocss.dev/guide/config-file export default defineConfig({ rules: [ ['lr-box-bg', { background: 'no-repeat center/100% 100% url(@/assets/images/lr-box-bg.png)' }], [ 'breadcrumb-bg', { background: 'no-repeat center/100% 100% url(@/assets/images/breadcrumb-bg.png)' } ] ], shortcuts: [ // ... ], theme: { colors: { // ... } }, presets: [ presetUno(), presetAttributify(), presetIcons(), presetTypography(), presetWebFonts({ fonts: { // ... } }) ], transformers: [transformerDirectives(), transformerVariantGroup()] })