Skip to content

Commit ef55e1d

Browse files
committed
fix(daffio): index file cannot be found in SSR (#3052)
1 parent 57d215b commit ef55e1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/daffio/server/server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function app(): express.Express {
2121
const distFolder = join(__dirname, '../browser');
2222
const indexHtml = existsSync(join(distFolder, 'index.original.html'))
2323
? join(distFolder, 'index.original.html')
24-
: join(distFolder, 'index.html');
24+
: join(distFolder, 'index.csr.html');
2525

2626
const commonEngine = new CommonEngine();
2727

0 commit comments

Comments
 (0)