Files
meldestelle/client/web-app/webpack.config.d/performance.js
T
2025-09-01 13:26:37 +02:00

8 lines
197 B
JavaScript

module.exports = (config) => {
config.performance = {
hints: false, // Warnungen aus
maxEntrypointSize: 1024 * 1024,
maxAssetSize: 1024 * 1024,
};
};