From bf1ffaf4c9bf7251a48ae57a04282e4e19b5caea Mon Sep 17 00:00:00 2001 From: Mike Brocchi Date: Fri, 27 Apr 2018 12:15:10 -0700 Subject: [PATCH] docs: Update bundle budgets story. --- docs/documentation/stories/budgets.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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: [] } - ] + } } ```