We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, I use express-basic-auth with config { challenge: true }, it will call res.set(), but res.setHeader() instead in Next.js.
{ challenge: true }
res.set()
res.setHeader()
The text was updated successfully, but these errors were encountered:
You're right. I will add these express function in the wrapper
Sorry, something went wrong.
req.is(type) is not supported. It'd be great to add it as well. https://expressjs.com/en/api.html#req.is
req.is(type)
This still is an issue today.
No branches or pull requests
For example, I use express-basic-auth with config
{ challenge: true }
, it will callres.set()
, butres.setHeader()
instead in Next.js.The text was updated successfully, but these errors were encountered: