We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c58d4b commit 1e40884Copy full SHA for 1e40884
projects/demo/src/main.server.ts
@@ -1,7 +1,7 @@
1
-import { bootstrapApplication } from '@angular/platform-browser';
+import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
2
import { AppComponent } from './app/app.component';
3
import { config } from './app/app.config.server';
4
5
-const bootstrap = () => bootstrapApplication(AppComponent, config);
+const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, config, context);
6
7
export default bootstrap;
0 commit comments