diff --git a/docs/documentation/stories/budgets.md b/docs/documentation/stories/budgets.md index e01364f9ce09..f6eea0f0311a 100644 --- a/docs/documentation/stories/budgets.md +++ b/docs/documentation/stories/budgets.md @@ -4,16 +4,16 @@ As applications grow in functionality, they also grow in size. Budgets is a feat Angular CLI which allows you to set budget thresholds in your configuration to ensure parts of your application stay within boundries which you set. -**.angular-cli.json** +**angular.json** ``` { ... - apps: [ - { + "configurations": { + "production": { ... budgets: [] } - ] + } } ```