We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42feea9 commit c5701c2Copy full SHA for c5701c2
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