Reputation: 325
Just try to start some project with enabled SSR at SAP Composable Storefront 2211. Looks like cause of Angular 17 upgrade SSR part was changed. I was struggling how to start serve and to see working SSR, seems like documentation not updated.
Can somebody suggest how to do this, as it not works the same as in previous versions?
Upvotes: 0
Views: 249
Reputation: 1
server.ts changed. Please check those line
import { dirname, join, resolve } from 'node:path';
const indexHtml = join(serverDistFolder, 'index.server.html');
Upvotes: 0