-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
30 lines (30 loc) · 1.08 KB
/
main.js
File metadata and controls
30 lines (30 loc) · 1.08 KB
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
26
27
28
29
30
System.register(['angular2/core', 'angular2/platform/browser', 'angular2/router', './app/components/app'], function(exports_1, context_1) {
"use strict";
var __moduleName = context_1 && context_1.id;
var core_1, core_2, browser_1, router_1, app_1;
return {
setters:[
function (core_1_1) {
core_1 = core_1_1;
core_2 = core_1_1;
},
function (browser_1_1) {
browser_1 = browser_1_1;
},
function (router_1_1) {
router_1 = router_1_1;
},
function (app_1_1) {
app_1 = app_1_1;
}],
execute: function() {
core_1.enableProdMode();
browser_1.bootstrap(app_1.AppComp, [
router_1.ROUTER_PROVIDERS,
core_2.provide(router_1.LocationStrategy, { useClass: router_1.HashLocationStrategy }),
core_2.provide(router_1.APP_BASE_HREF, { useValue: '/' })
]);
}
}
});
//# sourceMappingURL=main.js.map