You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When my webpage loads I briefly get a flash of 'undefined' before the page loads. This flash happens over a fraction of a second. Is there a way just to remove the 'undefined'? I am not worried about the wait at all just the text. My SSR.ReactRouterRun looks like this:
ReactRouterSSR.Run(
Routes,
{
props: {
htmlHook(html) {
const head = Helmet.rewind();
html = html.replace('<head>', `<head>${head.title}${head.base}${head.meta}${head.link}${head.script}`);
return html;
},
},
},
{
htmlHook(html) {
const head = Helmet.rewind();
html = html.replace('<head>', `<head>${head.title}${head.base}${head.meta}${head.link}${head.script}`);
return html;
},
}
);
Thanks!
The text was updated successfully, but these errors were encountered:
When my webpage loads I briefly get a flash of 'undefined' before the page loads. This flash happens over a fraction of a second. Is there a way just to remove the 'undefined'? I am not worried about the wait at all just the text. My SSR.ReactRouterRun looks like this:
Thanks!
The text was updated successfully, but these errors were encountered: