/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
errors/edge-runtime-deprecated.mdx
23 строки
591 B
Tim Neutkens
Deprecate edge runtime (#93369)
30 апр 2026, 11:01
Не верифицирован
30 апр 2026, 11:01
84f1e44
Код
Авторство
О чём код?
--- title: Edge Runtime Deprecated --- ## Why This Warning Occurred One or more routes in your application use `export const runtime = 'edge'`, which is deprecated. ## How to Migrate Remove the `runtime` export from your route files: ```diff - export const runtime = 'edge' ``` The Node.js runtime is the default, so no replacement is needed. This applies to all route files that support the `runtime` segment config: `page.ts`, `layout.ts`, `route.ts`, and API routes. ## Useful Links - [Route Segment Config](/docs/app/api-reference/file-conventions/route-segment-config/runtime)