Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 654 Bytes

gssp-export.md

File metadata and controls

14 lines (8 loc) · 654 Bytes

getServerSideProps Export Error

Why This Error Occurred

You attempted to export a page with getServerSideProps which is not allowed. getServerSideProps is meant for requesting up to date information on every request which means exporting it defeats the purpose of the method.

Possible Ways to Fix It

If you would like the page be static you can leverage the getStaticProps method instead.

Useful Links