Skip to content

Commit

Permalink
fix assets-manifest; update regex to reflect new contenthash length
Browse files Browse the repository at this point in the history
  • Loading branch information
waldronmatt committed Sep 4, 2020
1 parent 217bc3e commit eecb908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bowman-starter/scripts/webpack/webpack.common.prebuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = {
https://github.com/webpack-contrib/copy-webpack-plugin/issues/104
*/
map: (file) => {
file.name = file.name.replace(/(\.[a-f0-9]{32})(\..*)$/, '$2');
file.name = file.name.replace(/(\.[a-f0-9]{8})(\..*)$/, '$2');
return file;
},
}),
Expand Down

0 comments on commit eecb908

Please # to comment.