rsnext/test/integration/catches-missing-getStaticProps/pages/[slug].js
JJ Kasper f6e7a38101
Add paths field for unstable_getStaticPaths (#10454)
* Add paths field for unstable_getStaticPaths

* Make sure to specify page in getStaticPaths errors
2020-02-07 22:09:54 -05:00

5 lines
148 B
JavaScript

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