Interactive/pkg/views/uno.config.ts

6 lines
207 B
TypeScript
Raw Normal View History

2024-03-02 21:40:09 +08:00
import { defineConfig, presetAttributify, presetTypography, presetUno } from "unocss";
2024-03-02 12:29:16 +08:00
export default defineConfig({
2024-03-02 21:40:09 +08:00
presets: [presetAttributify(), presetTypography(), presetUno({ preflight: false })]
2024-03-02 12:29:16 +08:00
})