angular init

This commit is contained in:
2025-10-16 16:29:12 +02:00
parent a25c375251
commit 30a9ca3f6c
22 changed files with 10495 additions and 25 deletions

7
src/main.ts Normal file
View File

@@ -0,0 +1,7 @@
import { platformBrowser } from '@angular/platform-browser';
import { AppModule } from './app/app-module';
platformBrowser().bootstrapModule(AppModule, {
ngZoneEventCoalescing: true,
})
.catch(err => console.error(err));