From 96ce667cbd6481ce2042cc4dd0ca6dbae41e06f6 Mon Sep 17 00:00:00 2001 From: Janne Savolainen Date: Fri, 21 Apr 2023 16:00:26 +0300 Subject: [PATCH] chore: Remove bundle size limit from lens-link being a script which bundles the dependencies Co-authored-by: Mikko Aspiala Signed-off-by: Janne Savolainen --- packages/infrastructure/lens-link/webpack.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/infrastructure/lens-link/webpack.config.js b/packages/infrastructure/lens-link/webpack.config.js index 3183f30179..6d94a990e9 100644 --- a/packages/infrastructure/lens-link/webpack.config.js +++ b/packages/infrastructure/lens-link/webpack.config.js @@ -1 +1,3 @@ -module.exports = require("@k8slens/webpack").configForNode; +const { performance, ...configWithoutBundleSizeLimit } = require("@k8slens/webpack").configForNode; + +module.exports = configWithoutBundleSizeLimit;