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