We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dd7e4b commit b42d04bCopy full SHA for b42d04b
src/node/cli.ts
@@ -56,6 +56,7 @@ export interface Args extends VsArgs {
56
"new-window"?: boolean
57
58
link?: OptionalString
59
+ home?: string
60
}
61
62
interface Option<T> {
@@ -198,6 +199,10 @@ const options: Options<Required<Args>> = {
198
199
`,
200
beta: true,
201
},
202
+ home: {
203
+ type: "string",
204
+ description: "Set a custom link for the 'Go Home' button in the Application Menu",
205
+ },
206
207
208
export const optionDescriptions = (): string[] => {
test/cli.test.ts
@@ -86,6 +86,7 @@ describe("parser", () => {
86
"extra-extensions-dir": [path.resolve("nozzle")],
87
help: true,
88
host: "0.0.0.0",
89
+ home: "https://localhost:8080/",
90
json: true,
91
log: "error",
92
open: true,
0 commit comments