Answers for "warning: bundle initial exceeded maximum budget. budget 500.00 kb was not met by 546.73 kb with a total of 1.02 mb."

8

Exceeded maximum budget Budget 10 kB was not met by 478 bytes with a total of 10.5 kB.

// in angular json
"budgets": [
   {
      "type": "initial",
      "maximumWarning": "2mb",
      "maximumError": "5mb"
   }
]
Posted by: Guest on July-31-2020
1

ERROR in budgets: bundle initial-es5 exceeded maximum budget. Budget 5 MB was not met by 128 kB with a total of 5.12 MB.

//Open angular.json file and find budgets keyword.
"budgets": [
       {
          "type": "initial",
          "maximumWarning": "2mb", <===default is 2mb and 5mb, 
          "maximumError": "5mb"	  <===increase it to what you need
       }
    ]
Posted by: Guest on August-26-2021

Code answers related to "warning: bundle initial exceeded maximum budget. budget 500.00 kb was not met by 546.73 kb with a total of 1.02 mb."

Code answers related to "Javascript"

Browse Popular Code Answers by Language