Mise en place du frontend Angular (init, environments, proxy vers le backend)

This commit is contained in:
valentin
2026-09-14 14:28:44 +02:00
parent 6161a432c3
commit 49f46978b0
23 changed files with 8804 additions and 8 deletions
+5
View File
@@ -0,0 +1,5 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { App } from './app/app';
bootstrapApplication(App, appConfig).catch((err) => console.error(err));