forked from codeJunctionTeam/codeJunction-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
25 lines (18 loc) · 911 Bytes
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*!
=========================================================
* Paper Kit 2 Angular - v1.3.0
=========================================================
* Product Page: https://www.creative-tim.com/product/paper-kit-2-angular
* Copyright 2017 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/timcreative/paper-kit/blob/master/LICENSE.md)
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
if (environment.production) {
enableProdMode();
}
platformBrowserDynamic().bootstrapModule(AppModule);