rsnext/errors/export-no-custom-routes.md
JJ Kasper 782b7e48ec
Add warning when exporting with custom routes (#17538)
This adds a warning when `next export` and custom routes are defined  outside of a platform that supports them since they won't be applied anymore.
2020-10-05 07:11:06 +00:00

1 KiB

next export No Custom Routes

Why This Error Occurred

In your next.config.js rewrites, redirects, or headers were defined while next export was being run outside of a platform that supports them.

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 next export to deploy your application or deploy your application using a method that supports these configs.