Skip to content

Commit

Permalink
Merge pull request #4999 from camptocamp/rm-hash
Browse files Browse the repository at this point in the history
Removes the vendor hash
  • Loading branch information
sbrunner committed Jul 15, 2019
2 parents ba18a68 + 945690d commit 432e5de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildtools/webpack.config.dll.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
output: {
path: path.resolve(__dirname, '../dist/'),
filename: '[name].js',
library: '[name]_[hash]',
library: '[name]',
},
module: {
rules: [
Expand Down Expand Up @@ -38,7 +38,7 @@ module.exports = {
plugins: [
new webpack.DllPlugin({
path: path.resolve(__dirname, '../dist/vendor-manifest.json'),
name: '[name]_[hash]',
name: '[name]',
}),
new webpack.SourceMapDevToolPlugin({
filename: '[file].map',
Expand Down

0 comments on commit 432e5de

Please sign in to comment.