mirror of
https://github.com/voson-wang/toon.git
synced 2026-01-29 23:34:10 +08:00
15 lines
305 B
TypeScript
15 lines
305 B
TypeScript
import type { UserConfig } from 'unocss'
|
|
import { defineConfig, presetIcons, presetWind4, transformerDirectives } from 'unocss'
|
|
|
|
const config: UserConfig = defineConfig({
|
|
presets: [
|
|
presetWind4(),
|
|
presetIcons(),
|
|
],
|
|
transformers: [
|
|
transformerDirectives(),
|
|
],
|
|
})
|
|
|
|
export default config
|