11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
import { defineConfig, presetAttributify, presetWind3 } from "unocss"
|
|
|
|
export default defineConfig({
|
|
presets: [
|
|
presetWind3({
|
|
dark: "media",
|
|
}),
|
|
presetAttributify({}),
|
|
],
|
|
})
|