We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ffbcfd commit e37b352Copy full SHA for e37b352
src/node/main.ts
@@ -144,7 +144,9 @@ export const runCodeServer = async (
144
logger.info(" - Not serving HTTPS")
145
}
146
147
- if (args["proxy-domain"].length > 0) {
+ if (args["disable-proxy"]) {
148
+ logger.info(" - Proxy disabled")
149
+ } else if (args["proxy-domain"].length > 0) {
150
logger.info(` - ${plural(args["proxy-domain"].length, "Proxying the following domain")}:`)
151
args["proxy-domain"].forEach((domain) => logger.info(` - ${domain}`))
152
0 commit comments