mirror of
https://github.com/unjs/unplugin.git
synced 2025-12-08 20:26:33 +00:00
15 lines
298 B
TypeScript
15 lines
298 B
TypeScript
import { defineConfig, presetAttributify, presetIcons, presetWind3, transformerDirectives } from 'unocss'
|
|
|
|
export default defineConfig({
|
|
presets: [
|
|
presetWind3(),
|
|
presetAttributify(),
|
|
presetIcons({
|
|
scale: 1.2,
|
|
}),
|
|
],
|
|
transformers: [
|
|
transformerDirectives(),
|
|
],
|
|
})
|