From d80243fbee87d3d0fc6226be6c154475835e6057 Mon Sep 17 00:00:00 2001 From: rozetko Date: Tue, 17 May 2022 18:18:44 +0400 Subject: [PATCH] external d3 and lodash --- build/prod.webpack.conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/prod.webpack.conf.js b/build/prod.webpack.conf.js index e30710d..4bee62f 100644 --- a/build/prod.webpack.conf.js +++ b/build/prod.webpack.conf.js @@ -3,7 +3,7 @@ const baseWebpackConfig = require('./base.webpack.conf'); var conf = baseWebpackConfig; conf.mode = 'production'; conf.externals = [ - '@chartwerk/core' + '@chartwerk/core', 'd3', 'lodash', ]; module.exports = baseWebpackConfig;