{"id":517,"hash":"2ef8fa47dfea47598f2b58ee58acb72162ef756d08fa674579a9c1e56b49862a","pattern":"WARNING in budgets, maximum exceeded for initial","full_message":"When building my Angular 7 project with --prod, I receive a warning in budgets.\n\nI have an Angular 7 project. I am trying to build it, but I keep getting the following warning:\n\nWARNING in budgets, maximum exceeded for initial. Budget 2 MB was exceeded by 1.77 MB\n\nThese are the chunk details:\n\nchunk {scripts} scripts.2cc9101aa9ed72da1ec4.js (scripts) 154 kB  [rendered]\nchunk {0} runtime.ec2944dd8b20ec099bf3.js (runtime) 1.41 kB [entry] [rendered]\nchunk {1} main.13d1eb792af7c2f359ed.js (main) 3.34 MB [initial] [rendered]\nchunk {2} polyfills.11b1e0c77d01e41acbba.js (polyfills) 58.2 kB [initial] [rendered]\nchunk {3} styles.33b11ad61bf10bb992bb.css (styles) 379 kB [initial] [rendered]\n\nWhat exactly are budgets? How should I manage them?","ecosystem":"npm","package_name":"angular","package_version":null,"solution":"Open angular.json file and find budgets keyword.\n\nIt should look like:\n\n    \"budgets\": [\n       {\n          \"type\": \"initial\",\n          \"maximumWarning\": \"2mb\",\n          \"maximumError\": \"5mb\"\n       }\n    ]\n\nAs you’ve probably guessed you can increase the maximumWarning value to prevent this warning, i.e.:\n\n    \"budgets\": [\n       {\n          \"type\": \"initial\",\n          \"maximumWarning\": \"4mb\", <===\n          \"maximumError\": \"5mb\"\n       }\n    ]\n\nWhat does budgets mean?\n\nA performance budget is a group of limits to certain values that\naffect site performance, that may not be exceeded in the design and\ndevelopment of any web project.\n\nIn our case budget is the limit for bundle sizes.\n\nSee also:\n\nhttps://github.com/webpack/webpack/issues/3216\nhttps://angular.io/guide/build#configure-size-budgets\nPerformance Budgets (Keep Request Counts Low And File Sizes Small)","confidence":0.95,"source":"stackoverflow","source_url":"https://stackoverflow.com/questions/53995948/warning-in-budgets-maximum-exceeded-for-initial","votes":660,"created_at":"2026-04-19T04:51:17.796372+00:00","updated_at":"2026-04-19T04:51:17.796372+00:00"}