File size: 188 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 | export async function getServerSideProps() {
// We will use this route to simulate a route change errors
throw new Error('KABOOM!')
}
export default function Page() {
return null
}
|
1e92f2d | 1 2 3 4 5 6 7 8 9 | export async function getServerSideProps() {
// We will use this route to simulate a route change errors
throw new Error('KABOOM!')
}
export default function Page() {
return null
}
|