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,7 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';
const bootstrap = () => bootstrapApplication(AppComponent, config);
export default bootstrap;