You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,7 @@
128
128
|120|[What is Angular CLI Builder?](#what-is-angular-cli-builder)|
129
129
|121|[What is a builder?](#what-is-a-builder)|
130
130
|122|[How do you invoke a builder?](#how-do-you-invoke-a-builder)|
131
+
|123|[How do you create app shell in Angular?](#how-do-you-create-app-shell-in-angular)|
131
132
132
133
1.### What is Angular Framework?
133
134
@@ -1618,5 +1619,11 @@
1618
1619
A builder function ia a function that uses the `Architect API` to perform a complex process such as "build" or "test". The builder code is defined in an npm package. For example, BrowserBuilder runs a webpack build for a browser target and KarmaBuilder starts the Karma server and runs a webpack build for unit tests.
1619
1620
122. ### How do you invoke a builder?
1620
1621
The Angular CLI command `ng run` is used to invoke a builder with a specific target configuration. The workspace configuration file, `angular.json`, contains default configurations for built-in builders.
1622
+
123. ### How do you create app shell in Angular?
1623
+
An App shell is a way to render a portion of your application via a route at build time. This is useful to first paint of your application that appears quickly because the browser can render static HTML and CSS without the need to initialize JavaScript. You can achieve this using Angular CLI which generates an app shell for running server-side of your app.
0 commit comments