rsnext/errors/export-no-custom-routes.md

1 KiB

`Export Custom Routes

Why This Error Occurred

In your next.config.js you defined rewrites, redirects, or headers along with output: 'export' (or you ran next export).

These configs do not apply when exporting your Next.js application manually.

Possible Ways to Fix It

Disable the rewrites, redirects, and headers from your next.config.js when using output: 'export' (or next export) to deploy your application or deploy your application using a method that supports these configs.