Skip to content

Commit

Permalink
fix(webpack-client-prod): keep keyframes names
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandr Kitov committed Aug 23, 2018
1 parent 0471b9f commit fdd4298
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion configs/webpack.client.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,13 @@ module.exports = applyOverrides(['webpack', 'webpackClient', 'webpackProd', 'web
}),
new ManifestPlugin(),
new webpack.optimize.ModuleConcatenationPlugin(),
new OptimizeCssAssetsPlugin(),
new OptimizeCssAssetsPlugin({
cssProcessorOptions: {
reduceIdents: {
keyframes: false
}
}
}),
new CompressionPlugin({
asset: '[file].gz',
algorithm: 'gzip',
Expand Down

0 comments on commit fdd4298

Please sign in to comment.