rsnext/test/integration/catches-missing-getStaticProps/pages/[slug].js
Joe Haddad 47ff1eb95a
Ability to Disable SSG Fallback (#10701)
* Ability to Disable SSG Fallback

* Throw error when value is missing

* Fix existing tests

* Adjust error message

* Do not render fallback at build time for `fallback: false` page

* Fix existing fallback behavior

* fix build

* fix version

* fix some tests

* Fix last test

* Add docs for get static paths

* Add explicit mode tests

* test for fallback error message
2020-02-27 13:23:28 +01:00

5 lines
164 B
JavaScript

export async function unstable_getStaticPaths() {
return { paths: ['/hello', '/world'], fallback: true }
}
export default () => <p>something is missing 🤔</p>