mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
8b24103d7f
Fixes #6144
10 lines
460 B
Markdown
10 lines
460 B
Markdown
# Using `next start` with `target` not set to `server`
|
||
|
||
#### Why This Error Occurred
|
||
|
||
Next.js can only handle running a server when the `target` is set to `server` (this is the default value). A serverless build, for instance, has no handler for requests–this is usually implemented by a hosting provider.
|
||
|
||
#### Possible Ways to Fix It
|
||
|
||
Use a different handler than `next start` when testing a serverless **production** build, otherwise just use `next dev`.
|