File size: 978 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
---
title: 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
- Remove `rewrites`, `redirects`, and `headers` from your `next.config.js` to disable these features or
- Remove `output: 'export'` (or `next export`) in favor of [`next start`](/docs/pages/api-reference/cli/next#next-start-options) to run a production server
## Useful Links
- [Deployment Documentation](/docs/pages/getting-started/deploying)
- [`output: 'export'` Documentation](/docs/pages/guides/static-exports)
- [Rewrites Documentation](/docs/pages/api-reference/config/next-config-js/rewrites)
- [Redirects Documentation](/docs/pages/api-reference/config/next-config-js/redirects)
- [Headers Documentation](/docs/pages/api-reference/config/next-config-js/headers)
|