updating to angular 21

This commit is contained in:
MastersGame
2026-01-31 12:24:01 +01:00
parent 9773e9b990
commit dc5e532769
3 changed files with 1965 additions and 1960 deletions

View File

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