Hacker News new | ask | show | jobs
by ledgerdev 823 days ago
Last year chrome started discarding background tabs to save memory, probably should have said discard rather then sleep it's been a while since I worked on that. Our user base keeps tabs in background often in mobile devices and we saw some reports of it. https://arstechnica.com/gadgets/2023/02/chrome-110-will-auto...

When you do an htmx navigation to a new page, a discarded tab will "restore" only the last htmx fragment loaded, not the entire html page with style tags. Fix is to use unique url on push that isn't in local cache which forces a server reload on tab wake from discard.

1 comments

Try adding the response header:

    Vary: HX-Request
Yep, probably browser caching:

https://htmx.org/docs/#caching

Next time I work on it, will try to see if that resolves it.
That worked for me. Thank you.