We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ead0ff commit e53acaeCopy full SHA for e53acae
packages/cloudflare-worker/src/sanitize.ts
@@ -69,7 +69,7 @@ export function sanitize(config: Record<string, string>): Config {
69
height: parseInt(config.height?.trim()) || 200,
70
css: [],
71
extensions: handleExtension(config),
72
- font: normalize(config.font?.trim()) || "baloo_2",
+ font: normalize(config.font?.trim() || "baloo_2"),
73
animation: config.animation ? booleanize(config.animation.trim()) : true,
74
theme: { light: "light", dark: "dark" },
75
cache: 60,
0 commit comments