We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ac504c commit fe000e2Copy full SHA for fe000e2
bin/http-server
@@ -76,7 +76,7 @@ var proxyOptionsBooleanProps = [
76
if (proxyOptions) {
77
Object.keys(proxyOptions).forEach(function (key) {
78
if (proxyOptionsBooleanProps.indexOf(key) > -1) {
79
- proxyOptions[key] = proxyOptions[key] === 'true';
+ proxyOptions[key] = proxyOptions[key].toLowerCase() === 'true';
80
}
81
});
82
0 commit comments