Skip to content

Commit

Permalink
fix: chunk filenames (#1707)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKheops authored Nov 22, 2024
1 parent 89e4533 commit 7c5053d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/extension/webpack/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const config = (env) => ({
output: {
path: distDir,
filename: "[name].js",
chunkFilename: "[name].chunk.js",
chunkFilename: "chunk.[name].js",
assetModuleFilename: "assets/[hash][ext]", // removes query string if there are any in our import strings (we use ?url for svgs)
globalObject: "self",
},
Expand Down

0 comments on commit 7c5053d

Please sign in to comment.