File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ The generated project has dependencies that require **Node 4 or greater**.
29
29
* [ Generating a Route] ( #generating-a-route )
30
30
* [ Creating a Build] ( #creating-a-build )
31
31
* [ Environments] ( #environments )
32
+ * [ Bundling] ( #bundling )
32
33
* [ Running Unit Tests] ( #running-unit-tests )
33
34
* [ Running End-to-End Tests] ( #running-end-to-end-tests )
34
35
* [ Deploying the App via GitHub Pages] ( #deploying-the-app-via-github-pages )
@@ -140,6 +141,11 @@ You can also add your own env files other than `dev` and `prod` by creating a
140
141
` src/client/app/environment.{NAME}.ts ` and use them by using the ` --env=NAME `
141
142
flag on the build/serve commands.
142
143
144
+ ### Bundling
145
+
146
+ Builds created with the ` -prod ` flag via ` ng build -prod ` or ` ng serve -prod ` bundle
147
+ all dependencies into a single file, and make use of tree-shaking techniques.
148
+
143
149
### Running unit tests
144
150
145
151
``` bash
You can’t perform that action at this time.
0 commit comments