1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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()]
- })
|