Upload files to "src"
This commit is contained in:
parent
3378d3bdbb
commit
555006e521
3 changed files with 22 additions and 0 deletions
13
src/index.html
Normal file
13
src/index.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ZstA51AngularProjekt</title>
|
||||
<base href="/">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<app-root></app-root>
|
||||
</body>
|
||||
</html>
|
7
src/main.ts
Normal file
7
src/main.ts
Normal file
|
@ -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));
|
2
src/styles.css
Normal file
2
src/styles.css
Normal file
|
@ -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";
|
Loading…
Add table
Reference in a new issue