/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/development/server-side-dev-errors/pages/uncaught-empty-exception.js
12 строк
205 B
Tim Neutkens
Convert test/integration to isolated tests (#93247)
11 май 2026, 14:55
Не верифицирован
11 май 2026, 14:55
8141dcf
Код
Авторство
О чём код?
export default function Page() { return <p>getServerSideProps page</p> } export async function getServerSideProps() { setTimeout(() => { throw new Error() }, 10) return { props: {}, } }