fix(webpack): fix css output name

pull/2670/head
Chaim Lev-Ari 2018-12-03 13:20:49 +02:00
parent 692ab5e983
commit bd0fd358ce
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ module.exports = {
}),
new MiniCssExtractPlugin({
filename: '[name].[hash].css',
chunkFilename: '[id].css',
chunkFilename: '[name].[id].css',
sourceMap: true
}),
new CleanWebpackPlugin(['dist/public']),