The font typing throws an error if importing from 'astro/config'. Looks like the import location should be from 'astro'.
// bejamas:astro-fonts:start /** @type {NonNullable<import("astro").AstroUserConfig["fonts"]>} */ const BEJAMAS_ASTRO_FONTS = [ { provider: fontProviders.google(), name: "Inter", cssVariable: "--font-sans", subsets: ["latin"], }, ]; // bejamas:astro-fonts:end
The font typing throws an error if importing from 'astro/config'. Looks like the import location should be from 'astro'.
// bejamas:astro-fonts:start /** @type {NonNullable<import("astro").AstroUserConfig["fonts"]>} */ const BEJAMAS_ASTRO_FONTS = [ { provider: fontProviders.google(), name: "Inter", cssVariable: "--font-sans", subsets: ["latin"], }, ]; // bejamas:astro-fonts:end