Skip to content

Commit fe000e2

Browse files
authored
Update bin/http-server
1 parent 1ac504c commit fe000e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/http-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ var proxyOptionsBooleanProps = [
7676
if (proxyOptions) {
7777
Object.keys(proxyOptions).forEach(function (key) {
7878
if (proxyOptionsBooleanProps.indexOf(key) > -1) {
79-
proxyOptions[key] = proxyOptions[key] === 'true';
79+
proxyOptions[key] = proxyOptions[key].toLowerCase() === 'true';
8080
}
8181
});
8282
}

0 commit comments

Comments
 (0)