The secret to achieving super fast load time with any framework is using a CDN and building the app into a Single Page Application (SPA).
By combining caching with the SPA approach, you can achieve fast load times at a relatively cheap cost.
Frameworks like Next.js and Sveltekit allow you to easily build SPAs, with Next.js providing additional benefits for hosting your API with different infrastructure, such as Vercel.
To turn your Sveltekit app into an SPA, you need to disable SSR in the root + layout.js/ts files, and specify the fallback HTML file for your hosting environment.