Import des sources angular à partir de 'headup_app'

This commit is contained in:
Rampeur
2025-08-11 23:26:29 +02:00
parent 7dcb426ef5
commit 0a6cbc0c00
335 changed files with 64362 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { appConfig } from './app/app.config';
import '@angular/common/locales/global/fr';
bootstrapApplication(AppComponent, appConfig)
.then(() => console.log(`Bootstrap success`))
.catch((err) => console.error(err));