Skip to content

Commit

Permalink
Fix broken client manifest filename replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
unstubbable committed Oct 14, 2024
1 parent ff4641a commit c216728
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function getEntryFiles(
.map(
(file) =>
'server/' +
file.replace('.js', '_' + CLIENT_REFERENCE_MANIFEST + '.js')
file.replace(/\.js$/, '_' + CLIENT_REFERENCE_MANIFEST + '.js')
)
)
}
Expand Down

0 comments on commit c216728

Please sign in to comment.