diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..d04586e --- /dev/null +++ b/src/index.html @@ -0,0 +1,13 @@ + + + + + ZstA51AngularProjekt + + + + + + + + diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..def24fe --- /dev/null +++ b/src/main.ts @@ -0,0 +1,7 @@ +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; +import { AppModule } from './app/app.module'; + +platformBrowserDynamic().bootstrapModule(AppModule, { + ngZoneEventCoalescing: true, +}) + .catch(err => console.error(err)); diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 0000000..2655090 --- /dev/null +++ b/src/styles.css @@ -0,0 +1,2 @@ +/* You can add global styles to this file, and also import other style files */ +@import "bootstrap/dist/css/bootstrap.min.css";