Upgrade angular material from 20 to 21.

This commit is contained in:
Florian THIERRY
2025-12-30 17:29:08 +01:00
parent db48f0b504
commit 01ef7c66b7
3 changed files with 18 additions and 19 deletions

View File

@@ -1,9 +1,8 @@
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, providers: [provideZoneChangeDetection(), ...appConfig.providers]})
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));