We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e897b39 commit 9c5058eCopy full SHA for 9c5058e
1 file changed
docs/documentation/stories/budgets.md
@@ -4,7 +4,7 @@
4
5
As applications grow in functionality, they also grow in size. Budgets is a feature in the
6
Angular CLI which allows you to set budget thresholds in your configuration to ensure parts
7
-of your application stay within boundries which you set.
+of your application stay within boundaries which you set.
8
9
**angular.json**
10
```
@@ -62,3 +62,24 @@ Available formats:
62
63
All sizes are relative to baseline.
64
Percentages are not valid for baseline values.
65
+
66
+## Example
67
68
+```
69
+{
70
+ ...
71
+ "configurations": {
72
+ "production": {
73
74
+ budgets: [
75
+ {
76
+ "type": "bundle",
77
+ "name": "vendor",
78
+ "minimumWarning": "300kb",
79
+ "minimumError": "400kb",
80
+ }
81
+ ]
82
83
84
+}
85
0 commit comments