Upgrade angular from 20 to 21.

This commit is contained in:
Florian THIERRY
2025-12-30 17:26:02 +01:00
parent 7397332293
commit db48f0b504
4 changed files with 1695 additions and 1390 deletions

View File

@@ -1,8 +1,9 @@
import { provideZoneChangeDetection } from "@angular/core";
/// <reference types="@angular/localize" />
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, appConfig)
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]})
.catch((err) => console.error(err));