Comment on How much traffic can a pre-rendered Next.js site handle?Comments−casper141yI've been down the same path with next.js. When seeing terrible performance after testing with k6, I pushed all static files (js, css, images etc) to a cdn.This way only the first request hits your actual server, the rest is handled for you.
Comments
I've been down the same path with next.js. When seeing terrible performance after testing with k6, I pushed all static files (js, css, images etc) to a cdn.
This way only the first request hits your actual server, the rest is handled for you.