Skip to content

Commit fa81e89

Browse files
committed
refactor: consistent type assertion
1 parent e302328 commit fa81e89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/node/build/bundle.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export async function bundle(
4444
pageToHashMap: Record<string, string>
4545
}> {
4646
const pageToHashMap = Object.create(null) as Record<string, string>
47-
const clientJSMap = Object.create(null)
47+
const clientJSMap = Object.create(null) as Record<string, string>
4848

4949
// define custom rollup input
5050
// this is a multi-entry build - every page is considered an entry chunk

0 commit comments

Comments
 (0)