New dashboard look & feel
[src/xds/xds-agent.git] / webapp / src / main.ts
1 /**
2  * @license
3  * Copyright Akveo. All Rights Reserved.
4  * Licensed under the MIT License. See License.txt in the project root for license information.
5  */
6 import { enableProdMode } from '@angular/core';
7 import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
8
9 import { AppModule } from './app/app.module';
10 import { environment } from './environments/environment';
11
12 if (environment.production) {
13   enableProdMode();
14 }
15
16 platformBrowserDynamic().bootstrapModule(AppModule)
17   .catch(err => console.info(err));