Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 766 Bytes

ssg-fallback-true-export.md

File metadata and controls

14 lines (8 loc) · 766 Bytes

SSG fallback: true Export Error

Why This Error Occurred

You attempted to export a page with a fallback: true return value from getStaticPaths which is invalid. fallback: true is meant for building pages on-demand after a build has occurred, exporting disables this functionality

Possible Ways to Fix It

If you would like the fallback: true behavior, next export should not be used. Instead follow the deployment documentation to deploy your incrementally generated static site.

Useful Links