From 25ff5f7338db5e147fa7090fa56573e45d5296fe Mon Sep 17 00:00:00 2001 From: rozetko Date: Thu, 11 Apr 2024 19:55:49 +0300 Subject: [PATCH] Bar-pod hover error #6 --- webpack.config.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 webpack.config.js diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..76ece01 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,7 @@ +module.exports.getWebpackConfig = (config, options) => { + const d3Idx = config.externals.indexOf('d3'); + if(d3Idx !== -1) { + config.externals.splice(d3Idx, 1); + } + return config; +};