2016-10-23 22:37:15 +02:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-10-06 08:37:37 -07:00
|
|
|
import {enableProdMode} from '@angular/core';
|
2016-09-01 16:56:45 -07:00
|
|
|
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
|
|
|
|
2016-10-06 08:37:37 -07:00
|
|
|
import {init} from './init';
|
|
|
|
import {AppModule} from './tree';
|
2016-09-01 16:56:45 -07:00
|
|
|
|
2019-02-06 18:02:07 +01:00
|
|
|
enableProdMode();
|
|
|
|
platformBrowserDynamic().bootstrapModule(AppModule).then(init);
|