Server-Side Rendering Support
Starter works seamlessly with SSR.
All components are SSR-compatible:
// This works!
export async function getStaticProps() {
return {
props: {
// Your data
},
};
}
No special configuration needed.