Server-Side Rendering

Server-Side Rendering Support


Starter works seamlessly with SSR.


Next.js


All components are SSR-compatible:


// This works!

export async function getStaticProps() {

return {

props: {

// Your data

},

};

}


No special configuration needed.