Font
By default the Inter font is included in the generated site.
If you need to customize the font you can set the CSS variables:
--docs-font-family: AwesomeFont;
--docs-heading-font-family: AwesomeFont;
To disable bundling the font set the bundleDefaultFont to false:
const docs = new Generator(import.meta.url, {
site: { name: "Awesome Site", lang: "en" },
+ bundleDefaultFont: false,
setupPath: "src/setup.ts",
});