Back to Next Js

Edge Runtime Deprecated

errors/edge-runtime-deprecated.mdx

16.3.0550 B
Original Source

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.