Skip to content

Commit e286429

Browse files
committed
comment about .bin use and add trailing semicolons
1 parent 58e3378 commit e286429

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/cloudflare/src/cli/build/patches/ast/vercel-og.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,11 @@ rule:
4646
4747
fix: |-
4848
async function getFallbackFont() {
49-
return (await import("$PATH.bin")).default
49+
// .bin is used so that a loader does not need to be configured for .ttf files
50+
return (await import("$PATH.bin")).default;
5051
}
5152
52-
var fallbackFont = getFallbackFont()
53+
var fallbackFont = getFallbackFont();
5354
`;
5455

5556
/**

0 commit comments

Comments
 (0)