Skip to content

Commit f61ec80

Browse files
committed
added a missing import statement that appears it would break mobile mode if I actually tested it
1 parent c0c1f16 commit f61ec80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

addon/ng2/blueprints/ng2/files/__path__/vendor.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import '@angular/platform-browser';
1010
import '@angular/platform-browser-dynamic';
1111

1212
<% if(isMobile) { %>
13-
'@angular/app-shell';
13+
import '@angular/app-shell';
1414
<% } %>
1515

1616
import 'rxjs/add/operator/map';

addon/ng2/models/webpack-build-common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const webpackCommonConfig = {
4646
// resolveGlobs: false,
4747
module: "es2015",
4848
target: "es5",
49-
library: 'es6',
49+
lib: ['es6', 'dom'],
5050
useForkChecker: true
5151
}
5252
},

0 commit comments

Comments
 (0)