What popular Javascript Frameworks do not use function requests when CSR is enabled?
What popular Javascript Frameworks do not use function requests when CSR is enabled? I do not wish to use SSR at all or minimize its use.
6 Replies
As Next even with CSR uses SSR
It doesn’t have to. If you set Next to Static Export Mode, then it won’t use any functions requests
Same with Astro
Not what I am looking for, I am not looking for a static website, I am looking for a website that uses clientside rendering therefore invalidating the need for or to pay for Cloudflare Workers
So unless every Javascript framework in the world uses a function similar to Next-on-pages which causes the use of Workers therefore bundled requests
🤷♂️
Next’s Static Export still uses CSR, the Static part just means that it doesn’t rely on any server to work(other than just serving the files as is), which wouldn’t cost you any Functions requests
So I can still have dynamic data on it or not...?
yes it's like using normal browser javascript