mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-26 11:43:59 -05:00
Merge pull request #632 from hedgedoc/webpack-css-contenthash
Generate CSS filenames with contenthash
This commit is contained in:
commit
6dde20942a
1 changed files with 4 additions and 1 deletions
|
@ -177,7 +177,10 @@ module.exports = {
|
|||
}
|
||||
]
|
||||
}),
|
||||
new MiniCssExtractPlugin()
|
||||
new MiniCssExtractPlugin({
|
||||
filename: '[name].[contenthash].css',
|
||||
chunkFilename: '[id].[contenthash].css'
|
||||
})
|
||||
],
|
||||
|
||||
entry: {
|
||||
|
|
Loading…
Reference in a new issue