Initialisierung der EnvelopeGeneratorAPI und der Angular-Webschnittstelle

This commit is contained in:
Developer 02
2024-06-12 01:50:11 +02:00
parent 9b2c5d9ca5
commit 2dc860b923
36 changed files with 14370 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));