mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
Fix browserification
Browserify fails to resolve the "./http-proxy/" as "./http-proxy/index.js" but as "./http-proxy.js" (so nothing works)
Beeing explicit here does not cost much for http-proxy, yet it's intrinsically complicated for browserify to fix (as trailing slash might be used as a pollyfill shim for native/non-natives addons i.e. require('url/') vs require('url') )
This commit is contained in:
parent
f5217d6c20
commit
8eddf45f2a
@ -1,7 +1,7 @@
|
|||||||
var http = require('http'),
|
var http = require('http'),
|
||||||
https = require('https'),
|
https = require('https'),
|
||||||
url = require('url'),
|
url = require('url'),
|
||||||
httpProxy = require('./http-proxy/');
|
httpProxy = require('./http-proxy/index.js');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Export the proxy "Server" as the main export.
|
* Export the proxy "Server" as the main export.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user