File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 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**.
2929* [ Generating a Route] ( #generating-a-route )
3030* [ Creating a Build] ( #creating-a-build )
3131* [ Environments] ( #environments )
32+ * [ Bundling] ( #bundling )
3233* [ Running Unit Tests] ( #running-unit-tests )
3334* [ Running End-to-End Tests] ( #running-end-to-end-tests )
3435* [ 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
140141` src/client/app/environment.{NAME}.ts ` and use them by using the ` --env=NAME `
141142flag on the build/serve commands.
142143
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+
143149### Running unit tests
144150
145151``` bash
You can’t perform that action at this time.
0 commit comments