I'm building a website using SSR + Next.js and I'd like to use the new View Transitions API to make the changes between pages look smoother.
I know that SSR + Next.js does rendering on the server side, and the View Transitions API does its work on the client side. So, I'm wondering if there's anything special I need to do to make sure they work well together?
I'm also curious if there's a different way to get the page transitions to work in React components that are built by the server in Next.js.