@angular-devkit/build-angular
Commit | Description |
---|---|
avoid extra tick in SSR builds |
@angular/build
Commit | Description |
---|---|
avoid extra tick in SSR dev-server builds |
@angular/ssr
Commit | Description |
---|---|
introduce BootstrapContext for isolated server-side rendering |
Breaking Changes
@angular/ssr
-
The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.
Before:
const bootstrap = () => bootstrapApplication(AppComponent, config);
After:
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, config, context);