rsnext/test/integration/catches-missing-getStaticProps/pages/[slug].js
JJ Kasper 89b22d2994 Fix missing getStaticProps error in serverless mode (#9532)
* Make sure to show missing getStaticProps error in serverless mode

* Update test
2019-11-27 23:23:32 -05:00

5 lines
137 B
JavaScript

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