From 9ed28ba7997b9d343bd4f804460ab9a2ddc4ffb0 Mon Sep 17 00:00:00 2001 From: Jeff Cross Date: Mon, 16 May 2016 17:05:09 -0700 Subject: [PATCH] fix(mobile): make app-shell compilation synchronous App Shell should generally not require any async information in order to render. --- addon/ng2/blueprints/mobile/files/__path__/main-app-shell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/ng2/blueprints/mobile/files/__path__/main-app-shell.ts b/addon/ng2/blueprints/mobile/files/__path__/main-app-shell.ts index 7e27fd4f4714..551be70af031 100644 --- a/addon/ng2/blueprints/mobile/files/__path__/main-app-shell.ts +++ b/addon/ng2/blueprints/mobile/files/__path__/main-app-shell.ts @@ -21,7 +21,7 @@ export const options = { provide(APP_BASE_HREF, {useValue: '/'}), provide(REQUEST_URL, {useValue: '/'}) ], - async: true, + async: false, preboot: false };