I'm getting a bunch of warnings when I run ng build --prod . For example
...
WARNING in budgets, maximum exceeded for C:/Users/Phil/Documents/myapp/myapp - offical-dev/src/app/profile/profile.component.css. Budget 6 kB was exceeded by 895 bytes.
WARNING in budgets, maximum exceeded for initial. Budget 2 MB was exceeded by 2.94 MB.
I know I can easily go into angular.json and adjust these budget thresholds, but I don't know if it's a bad idea or not. Should I have any concerns with raising these budgets?
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "65kb"
}
]
},
I did it to the anyComponentStyle type by setting it to 65 to make the css budget warnings go away, but is this gonna have performance issues or should I just adjust them to meet my app's size and not worry about it?