Interactive/pkg/views/uno.config.ts

6 lines
207 B
TypeScript
Raw Normal View History

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