feat(challenge): create challenge 32 about bug CD

This commit is contained in:
ThomasL
2023-07-25 16:29:49 +02:00
parent 2dc2fd7dfd
commit 9799c4c1e7
22 changed files with 431 additions and 1 deletions

7
apps/bug-cd/src/main.ts Normal file
View File

@@ -0,0 +1,7 @@
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)
);