rsnext/test/integration/prerender/pages/bad-ssr.js
Joe Haddad 15cdb4f408
Propagate Serverless Errors to Platform (#12841)
In serverless mode, it's best practice to propagate an unhandled error so that the function is disposed instead of recycled. This helps fix the "bad state" problem.
2020-06-01 23:12:45 +00:00

7 lines
128 B
JavaScript

export function getServerSideProps() {
return { props: {} }
}
export default function BadSsr() {
throw new Error('oops')
}