mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
23 lines
365 B
TypeScript
23 lines
365 B
TypeScript
|
|
import {
|
||
|
|
defineConfig,
|
||
|
|
presetUno,
|
||
|
|
presetTypography,
|
||
|
|
presetWebFonts,
|
||
|
|
} from "unocss";
|
||
|
|
import { presetForms } from "@julr/unocss-preset-forms";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
presets: [
|
||
|
|
presetUno(),
|
||
|
|
presetTypography({
|
||
|
|
cssExtend: {
|
||
|
|
"h1,h2,h3,h4,h5.h6": {
|
||
|
|
"font-family": "'Poppins'",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
presetWebFonts(),
|
||
|
|
presetForms(),
|
||
|
|
],
|
||
|
|
});
|