Compare commits

...

2 Commits

  1. 7
      webpack.config.js

7
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;
};
Loading…
Cancel
Save