From 5830f14b059f0f99171fdcd78254714881fda434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0?= Date: Thu, 23 Aug 2018 10:28:32 +0300 Subject: [PATCH] fix problem with build keyframe names the problem was in keyframe names. when webpack build css it gave the same names for keyframes in different files. So this change fixes it. --- webpack.production-builder.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webpack.production-builder.js b/webpack.production-builder.js index 0ed8d4c..f88d44a 100644 --- a/webpack.production-builder.js +++ b/webpack.production-builder.js @@ -47,7 +47,13 @@ function webpackProductionConfigBuilder(options) { }), extractMainCSS, extractIconsCSS, - new OptimizeCssAssetsPlugin(), + new OptimizeCssAssetsPlugin({ + cssProcessorOptions: { + reduceIdents: { + keyframes: false + } + } + }), new CompressionPlugin({ asset: '[file].gz', algorithm: 'gzip',