diff options
Diffstat (limited to 'client/src/main.ts')
-rw-r--r-- | client/src/main.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/client/src/main.ts b/client/src/main.ts deleted file mode 100644 index 70bf48537..000000000 --- a/client/src/main.ts +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
2 | import { decorateModuleRef } from './app/environment'; | ||
3 | import { bootloader } from '@angularclass/hmr'; | ||
4 | /* | ||
5 | * App Module | ||
6 | * our top level module that holds all of our components | ||
7 | */ | ||
8 | import { AppModule } from './app'; | ||
9 | |||
10 | /* | ||
11 | * Bootstrap our Angular app with a top level NgModule | ||
12 | */ | ||
13 | export function main(): Promise<any> { | ||
14 | return platformBrowserDynamic() | ||
15 | .bootstrapModule(AppModule) | ||
16 | .then(decorateModuleRef) | ||
17 | .catch(err => console.error(err)); | ||
18 | } | ||
19 | |||
20 | bootloader(main); | ||