From bb600f46fdd03b29c9b01a7130e815b2e669c70c Mon Sep 17 00:00:00 2001 From: David Manthey Date: Tue, 7 Nov 2023 11:57:26 -0500 Subject: [PATCH] feat: Never include vtkjs in the bundle This doesn't affect the lean bundle, only the full bundle. I don't know that anything is actively using the vtkjs renderer. --- webpack.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index 8ac19c73f2..71a34b95b3 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,5 +5,8 @@ module.exports = merge(config, { entry: { geo: ['./index.js'], 'geo.min': ['./index.js'] + }, + externals: { + 'vtk.js': 'vtk.js' } });