Using a hybrid static site generator + dynamic SSR approach via CF Pages and worker functions, proba
Using a hybrid static site generator + dynamic SSR approach via CF Pages and worker functions, probably generated with SvelteKit, is there a way to generate static versions of most pages which have a "Sign In" button in the top left of the page, but then when the user is actually logged in, switch to serving a dynamic SSR version showing their username in the top right instead of serving the static HTML page? It seems like this might not be possible (since the CF edge can't tell if the user is logged in before touching a Worker) but I just want to check if there's any option for this without just serving all pages with Workers.

