Neues Angular-Projekt mit CLI v17 initialisiert. ngx-grid, Fabric und Hermes installiert.

This commit is contained in:
Developer 02
2024-06-13 09:43:29 +02:00
parent 155726a6b0
commit af27163b08
23 changed files with 13356 additions and 0 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));