diff options
Diffstat (limited to 'config/webpack/shared.js')
-rw-r--r-- | config/webpack/shared.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/webpack/shared.js b/config/webpack/shared.js index 99f4dec1a..e3a1fc379 100644 --- a/config/webpack/shared.js +++ b/config/webpack/shared.js @@ -50,6 +50,13 @@ module.exports = { plugins: [ new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))), + new webpack.NormalModuleReplacementPlugin( + /^history\//, (resource) => { + // temporary fix for https://github.com/ReactTraining/react-router/issues/5576 + // to reduce bundle size + resource.request = resource.request.replace(/^history/, 'history/es'); + } + ), new ExtractTextPlugin({ filename: env.NODE_ENV === 'production' ? '[name]-[hash].css' : '[name].css', allChunks: true, |