Using static site generation in Next.js, Gatsby.js, and Remix

1 · Alec Brunelle · April 27, 2022, 12:03 p.m.
If you are writing a web application in 2022, you are likely using modern frontend technologies like React, Vue, and Svelte. You are also likely using an API to get the data necessary to render pages. Using API network requests is easily one of the slowest steps required to render pages, and a slow-running app can mean a poor user experience. Having great performing pages can also improve your search engine optimization (SEO) dramatically. If you own the API and know how to make it faster, gre...