From 7e3ee34c531371dcbccd64fb10389588dfc4dc4b Mon Sep 17 00:00:00 2001 From: Jeff Cross Date: Mon, 16 May 2016 17:03:28 -0700 Subject: [PATCH] fix(mobile): don't import system-config in system-import.js It's not necessary since all modules have already been added to app-concat.js. --- addon/ng2/blueprints/mobile/files/__path__/system-import.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/addon/ng2/blueprints/mobile/files/__path__/system-import.js b/addon/ng2/blueprints/mobile/files/__path__/system-import.js index 0a25c305e2f2..40fb651c0954 100644 --- a/addon/ng2/blueprints/mobile/files/__path__/system-import.js +++ b/addon/ng2/blueprints/mobile/files/__path__/system-import.js @@ -1,3 +1,2 @@ -System.import('system-config.js').then(function () { - System.import('main'); -}).catch(console.error.bind(console)); \ No newline at end of file +System.import('main') + .catch(console.error.bind(console));