8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
module.exports = (config) => {
|
|
config.performance = {
|
|
hints: false, // Warnungen aus
|
|
maxEntrypointSize: 1024 * 1024,
|
|
maxAssetSize: 1024 * 1024,
|
|
};
|
|
};
|