I am getting this attached error (Error screenshot) while trying to set the request header size limit in nest.js. error: unknown option '--max-http-header-size' This must be a working case when directly running express/node. How can I make it work in nestjs, since the default header size is set to 8 KB?
Asked
Active
Viewed 639 times
0
-
See this https://github.com/vercel/next.js/discussions/14340 – Molda Dec 04 '20 at 08:56
1 Answers
0
Try passing the argument through --:
nest start -- --max-http-header-size=80000
eol
- 20,051
- 4
- 32
- 54