mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
const {
|
|
configForNode: { performance, ...configForNode }
|
|
} = require("@k8slens/webpack");
|
|
|
|
module.exports = {
|
|
...configForNode,
|
|
performance: {
|
|
...performance,
|
|
maxEntrypointSize: 512000,
|
|
maxAssetSize: 512000
|
|
}
|
|
}
|