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 1,532 times
1
-
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
- 23,236
- 5
- 46
- 64