Browse Source

Use contenthash for ExtractTextWebpackPlugin (#5462)

[hash] is not documented.
pull/4/head
Akihiko Odaki 6 years ago
committed by unarist
parent
commit
e4080772b5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      config/webpack/shared.js

+ 1
- 1
config/webpack/shared.js View File

@ -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,

Loading…
Cancel
Save