Skip to content

Commit e53acae

Browse files
committed
fix: default font
1 parent 1ead0ff commit e53acae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cloudflare-worker/src/sanitize.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function sanitize(config: Record<string, string>): Config {
6969
height: parseInt(config.height?.trim()) || 200,
7070
css: [],
7171
extensions: handleExtension(config),
72-
font: normalize(config.font?.trim()) || "baloo_2",
72+
font: normalize(config.font?.trim() || "baloo_2"),
7373
animation: config.animation ? booleanize(config.animation.trim()) : true,
7474
theme: { light: "light", dark: "dark" },
7575
cache: 60,

0 commit comments

Comments
 (0)