Skip to content

Commit 9ed28ba

Browse files
committed
fix(mobile): make app-shell compilation synchronous
App Shell should generally not require any async information in order to render.
1 parent 9d18f74 commit 9ed28ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/ng2/blueprints/mobile/files/__path__/main-app-shell.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const options = {
2121
provide(APP_BASE_HREF, {useValue: '/'}),
2222
provide(REQUEST_URL, {useValue: '/'})
2323
],
24-
async: true,
24+
async: false,
2525
preboot: false
2626
};
2727

0 commit comments

Comments
 (0)