Skip to content

Commit

Permalink
refactor: consistent type assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Jul 4, 2024
1 parent e302328 commit fa81e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/build/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export async function bundle(
pageToHashMap: Record<string, string>
}> {
const pageToHashMap = Object.create(null) as Record<string, string>
const clientJSMap = Object.create(null)
const clientJSMap = Object.create(null) as Record<string, string>

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

0 comments on commit fa81e89

Please sign in to comment.