From aee2695413ff5a336a70e44a2313a613e037e1da Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" <70410625+michael-s-molina@users.noreply.github.com> Date: Thu, 3 Aug 2023 10:20:01 -0300 Subject: [PATCH] fix: Ignores hot update files when generating the manifest (#24871) --- superset-frontend/webpack.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/superset-frontend/webpack.config.js b/superset-frontend/webpack.config.js index 51e37c3ae..fb137c06c 100644 --- a/superset-frontend/webpack.config.js +++ b/superset-frontend/webpack.config.js @@ -98,11 +98,10 @@ const plugins = [ .filter(x => x.endsWith('.css')) .map(x => `${output.publicPath}${x}`), js: chunks - .filter(x => x.endsWith('.js')) + .filter(x => x.endsWith('.js') && x.match(/(? `${output.publicPath}${x}`), }; }); - return { ...seed, entrypoints: entryFiles,