How do you keep the forum fast without a JS framework?

Coming from a React background, I'm surprised how snappy this feels. What's the trick — is it just server-rendered pages plus a bit of vanilla JS for the interactive bits?

2 replies

  • 2

    Pretty much. Classic server-rendered WordPress templates, no webfonts, and small vanilla-JS modules that talk to a REST API only for writes (votes, replies, bookmarks). No hydration, no bundle.

    • 0

      The no-webfonts part is underrated — zero layout shift and instant text.