Skip to content
Snippets Groups Projects
Commit e4080772 authored by Akihiko Odaki's avatar Akihiko Odaki Committed by unarist
Browse files

Use contenthash for ExtractTextWebpackPlugin (#5462)

[hash] is not documented.
parent 78110529
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ module.exports = {
resource.request = resource.request.replace(/^history/, 'history/es');
}
),
new ExtractTextPlugin(env.NODE_ENV === 'production' ? '[name]-[hash].css' : '[name].css'),
new ExtractTextPlugin(env.NODE_ENV === 'production' ? '[name]-[contenthash].css' : '[name].css'),
new ManifestPlugin({
publicPath: output.publicPath,
writeToFileEmit: true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment