From 555006e5217b69e2f9d02159e7dd1d05b10ccd7f Mon Sep 17 00:00:00 2001 From: maciej Date: Wed, 9 Apr 2025 18:56:15 +0200 Subject: [PATCH] Upload files to "src" --- src/index.html | 13 +++++++++++++ src/main.ts | 7 +++++++ src/styles.css | 2 ++ 3 files changed, 22 insertions(+) create mode 100644 src/index.html create mode 100644 src/main.ts create mode 100644 src/styles.css 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";