mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
fix: Make build pass by permitting larger bundle sizes for packages
To check that these bundles need to be closer to half a meg will be checked elsewhere. Co-authored-by: Janne Savolainen <janne.savolainen@live.fi> Signed-off-by: Mikko Aspiala <mikko.aspiala@gmail.com>
This commit is contained in:
parent
9f68169f08
commit
381caf654a
@ -1 +1,6 @@
|
||||
module.exports = require("@k8slens/webpack").configForReact;
|
||||
const config = require("@k8slens/webpack").configForReact;
|
||||
|
||||
config.performance.maxEntrypointSize = 500000;
|
||||
config.performance.maxAssetSize = 500000;
|
||||
|
||||
module.exports = config;
|
||||
|
||||
@ -1 +1,6 @@
|
||||
module.exports = require("@k8slens/webpack").configForReact;
|
||||
const config = require("@k8slens/webpack").configForReact;
|
||||
|
||||
config.performance.maxEntrypointSize = 500000;
|
||||
config.performance.maxAssetSize = 500000;
|
||||
|
||||
module.exports = config;
|
||||
|
||||
@ -1 +1,5 @@
|
||||
module.exports = require("@k8slens/webpack").configForNode;
|
||||
const config = require("@k8slens/webpack").configForNode;
|
||||
|
||||
config.performance.maxEntrypointSize = 300000
|
||||
|
||||
module.exports = config;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user