import { presetTypography } from "https://deno.land/x/aleph@1.0.0-alpha.25/lib/@unocss/presets.ts";
UnoCSS Preset for Typography
// unocss.config.js
import { presetAttributify, presetUno, defineConfig } from 'unocss'
import { presetTypography } from '@unocss/preset-typography'
export default defineConfig({
presets: [
presetAttributify(), // required if using attributify mode
presetUno(), // required
presetTypography()
]
})