Updated angular-core

This commit is contained in:
2025-09-30 23:01:46 +02:00
parent 21fa706b45
commit 1dbc2f1ca9
4 changed files with 124 additions and 125 deletions

View File

@@ -1,7 +1,7 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';
const bootstrap = () => bootstrapApplication(AppComponent, config);
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, config, context);
export default bootstrap;