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 4f9c238 commit 2396092Copy full SHA for 2396092
1 file changed
src/node/cli.ts
@@ -677,9 +677,7 @@ export async function setDefaults(cliArgs: UserProvidedArgs, configArgs?: Config
677
}
678
args["proxy-domain"] = finalProxies
679
680
- if (!args["app-name"]) {
681
- args["app-name"] = "code-server"
682
- }
+ args["app-name"] ??= process.env.CODE_SERVER_APP_NAME || "code-server"
683
684
args._ = getResolvedPathsFromArgs(args)
685
0 commit comments