Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 909 Bytes

invalid-server-options.mdx

File metadata and controls

27 lines (18 loc) · 909 Bytes
title
It looks like the next instance is being instantiated incorrectly.

Why This Error Occurred

You have passed a null or undefined parameter to the next() call.

Possible Ways to Fix It

Make sure you are passing the variables properly:

const app = next()

And make sure you're passing dev as shown in the examples below:

const app = next({ dev: boolean })

Useful Links