diff --git a/guide/ssr.md b/guide/ssr.md index 28813069..b3f5ddeb 100644 --- a/guide/ssr.md +++ b/guide/ssr.md @@ -149,7 +149,7 @@ app.use('*', async (req, res, next) => { const appHtml = await render(url) // 5. アプリケーションのレンダリングされた HTML をテンプレートに挿入します。 - const html = template.replace(``, appHtml) + const html = template.replace(``, () => appHtml) // 6. レンダリングされた HTML をクライアントに送ります。 res.status(200).set({ 'Content-Type': 'text/html' }).end(html)