Migrate from Next.js Pages to Start or Router?
Our code base is a next JS application using the Pages router. We don’t do any SSR at all. All of our pages are static pages that use react query to fetch data from the client side.
I’m curious if we were to try to move to tan stack router, should we use start or router only?
2 Replies
rare-sapphire•4w ago
will you use any other server side features?
API routes, server functions, middleware, ..
?
if yes, then start. if not, then just router
(and moving from router to start is also a relatively simple upgrade)
statutory-emeraldOP•4w ago
Thank you