We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cb57fb commit ba5b06eCopy full SHA for ba5b06e
1 file changed
packages/angular/ssr/node/src/common-engine/common-engine.ts
@@ -175,9 +175,11 @@ export class CommonEngine {
175
const isSSG = SSG_MARKER_REGEXP.test(content);
176
if (isSSG) {
177
this.pageIsSSG.set(pagePath, true);
178
+
179
+ return content;
180
}
181
- return isSSG ? content : undefined;
182
+ return undefined;
183
184
185
private async renderApplication(opts: CommonEngineRenderOptions): Promise<string> {
0 commit comments