What I Wanted to Do
I am using npm behind a corporate proxy, and I wanted to exclude our internal package manager (its URL) from the proxy. I put a noproxy=âaddress_to_excludeâ in my .npmrc, as noted in the documentation (https://docs.npmjs.com/misc/config#noproxy).
What Happened Instead
The build was taking noproxy as a correct variable, but it didnât exclude the address of the package manager and it failed when trying to access it to get packages.
Details
Is it possible to correct the documentation to say that the correct variable is no_proxy (with an underscore) and not noproxy?
Thank you very much, have a great week. ;)