1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/utility-features/utilities/webpack.config.js
Sebastian Malton bd3d05d049 Get npm run dev to work again
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-03-29 16:38:41 -04:00

13 lines
231 B
JavaScript

const {
configForNode: { performance, ...configForNode }
} = require("@k8slens/webpack");
module.exports = {
...configForNode,
performance: {
...performance,
maxEntrypointSize: 512000,
maxAssetSize: 512000
}
}