fix(dev) disable performance hints when doing bundle analysis
This commit is contained in:
parent
2c24dc3d27
commit
a5ddc896e2
|
@ -25,7 +25,7 @@ const minimize
|
|||
*/
|
||||
function getPerformanceHints(size) {
|
||||
return {
|
||||
hints: minimize ? 'error' : false,
|
||||
hints: minimize && !analyzeBundle ? 'error' : false,
|
||||
maxAssetSize: size,
|
||||
maxEntrypointSize: size
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue