mirror of
https://github.com/gkd-kit/docs.git
synced 2024-12-27 18:45:35 +08:00
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import {
|
|
defineConfig,
|
|
presetAttributify,
|
|
presetUno,
|
|
transformerAttributifyJsx,
|
|
} from 'unocss';
|
|
|
|
export default defineConfig({
|
|
presets: [presetUno(), presetAttributify()],
|
|
transformers: [transformerAttributifyJsx()],
|
|
});
|