We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fe9dad commit a139fe6Copy full SHA for a139fe6
packages/@apphosting/adapter-angular/src/interface.ts
@@ -63,5 +63,7 @@ export const buildManifestSchema = z.object({
63
server: z.optional(url),
64
browser: url,
65
}),
66
- prerenderedRoutes: z.optional(z.string().array()),
+ // angular v18 has an array type and v19 has an object type
67
+ // We should uncomment this when we need to use prerenderedRoutes
68
+ // prerenderedRoutes: z.optional(z.union([z.string().array(), z.object({})])),
69
});
0 commit comments