Uncaught ReferenceError: _$HY is not defined
So, I'm trying to change my site to server side rendering.
The site runs locally when run via
When I check the html that was generated by the server side rendering, I can see:
what is
(PS: I did replace
import { render } from 'solid-js/web';
with
import { hydrate } from "solid-js/web";
and then used
The site runs locally when run via
yarn dev, but then I deploy it, I get:When I check the html that was generated by the server side rendering, I can see:
what is
_$HY ?(PS: I did replace
with
import { hydrate } from "solid-js/web";
and then used
hydrate instead of render in my index.tsx, in case thats whats missing)