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
commit 0a7497be27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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