diff --git a/playgrounds/demo/dist/index.js b/playgrounds/demo/dist/index.js index 4aa70d0f1..ddf268b8c 100644 --- a/playgrounds/demo/dist/index.js +++ b/playgrounds/demo/dist/index.js @@ -1,11 +1,11 @@ import fs from 'node:fs'; import path from 'node:path'; import express from 'express'; -import { head, html } from './server/entry-server.js'; +import { head, body } from './server/entry-server.js'; const rendered = fs .readFileSync(path.resolve('./dist/client/index.html'), 'utf-8') - .replace(``, html) + .replace(``, body) .replace(``, head); express()