rsnext/errors/next-export-serverless.mdx

12 lines
421 B
Text
Raw Normal View History

---
title: 'Using `next export` with `target` not set to `server`'
---
## Why This Error Occurred
Next.js can only handle exporting when the `target` is set to `server` (this is the default value). A serverless build, for instance, has no handler for requeststhis is usually implemented by a hosting provider.
## Possible Ways to Fix It
Change `target` to `server`, run `next build`, then run `next export` again.