Merge pull request #1886 from Choromanski/master

Overriding default webpack performance config to reduce warnings
This commit is contained in:
Ajay Ramachandran
2024-09-08 01:23:19 -04:00
committed by GitHub

View File

@@ -185,6 +185,12 @@ module.exports = env => {
stream: env.stream
}),
new configDiffPlugin()
]
],
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 512000
}
};
};