Bugfix: hydration mismatch
This commit is contained in:
@@ -56,6 +56,26 @@ export default async function genWebHTML({ component, pageProps, bundledMap, mod
|
||||
},
|
||||
});
|
||||
const htmlBody = await new Response(stream).text();
|
||||
// const originalConsole = {
|
||||
// log: console.log,
|
||||
// warn: console.warn,
|
||||
// error: console.error,
|
||||
// info: console.info,
|
||||
// debug: console.debug,
|
||||
// };
|
||||
// console.log = () => {};
|
||||
// console.warn = () => {};
|
||||
// console.error = () => {};
|
||||
// console.info = () => {};
|
||||
// console.debug = () => {};
|
||||
// const stream = await renderToReadableStream(final_component, {
|
||||
// onError(error: any) {
|
||||
// if (error.message.includes('unique "key" prop')) return;
|
||||
// originalConsole.error(error);
|
||||
// },
|
||||
// });
|
||||
// const htmlBody = await new Response(stream).text();
|
||||
// Object.assign(console, originalConsole);
|
||||
html += htmlBody;
|
||||
return html;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user