8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69a930 commit f31d589Copy full SHA for f31d589
addon/ng2/blueprints/mobile/files/__path__/main-app-shell.ts
@@ -34,10 +34,13 @@ const appConfig: AppConfig = {
34
]
35
}
36
37
+// The build system will call this function to get a bootloader
38
export function getBootloader() : Bootloader {
39
return new Bootloader(bootloaderConfig);
40
41
42
+// The build system will call this function with the bootloader from
43
+// getBootloader and the contents of the index page
44
export function serialize(bootloader: Bootloader, template: string) : string {
45
appConfig.template = template;
46
return bootloader.serializeApplication(appConfig);
0 commit comments