Skip to content

Commit

Permalink
Remove [hash] from dev config to eliminate potential [memory errors](
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Aug 13, 2020
1 parent 74a7f1b commit 8700d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const configureImageLoader = () => {
{
loader: 'file-loader',
options: {
name: 'img/[name].[hash].[ext]'
name: 'img/[name].[ext]'
}
}
]
Expand Down Expand Up @@ -87,7 +87,7 @@ module.exports = merge(
common.modernConfig,
{
output: {
filename: path.join('./js', '[name].[hash].js'),
filename: path.join('./js', '[name].js'),
publicPath: settings.devServerConfig.public() + '/',
},
mode: 'development',
Expand Down

0 comments on commit 8700d92

Please sign in to comment.