Skip to content

Commit

Permalink
fix(mobile): don't import system-config in system-import.js (#794)
Browse files Browse the repository at this point in the history
It's not necessary since all modules have already been added
to app-concat.js.
  • Loading branch information
jeffbcross authored and hansl committed May 17, 2016
1 parent 6b45099 commit 7ab7d72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions addon/ng2/blueprints/mobile/files/__path__/system-import.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
System.import('system-config.js').then(function () {
System.import('main');
}).catch(console.error.bind(console));
System.import('main')
.catch(console.error.bind(console));

0 comments on commit 7ab7d72

Please sign in to comment.