File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 20
20
- [ Proxying to a Vue app] ( #proxying-to-a-vue-app )
21
21
- [ Proxying to an Angular app] ( #proxying-to-an-angular-app )
22
22
- [ Proxying to a Svelte app] ( #proxying-to-a-svelte-app )
23
+ - [ Prefixing ` /absproxy/<port> ` with a path] ( #prefixing-absproxyport-with-a-path )
23
24
24
25
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
25
26
<!-- prettier-ignore-end -->
Original file line number Diff line number Diff line change @@ -118,18 +118,18 @@ interface Option<T> {
118
118
type OptionType < T > = T extends boolean
119
119
? "boolean"
120
120
: T extends OptionalString
121
- ? typeof OptionalString
122
- : T extends LogLevel
123
- ? typeof LogLevel
124
- : T extends AuthType
125
- ? typeof AuthType
126
- : T extends number
127
- ? "number"
128
- : T extends string
129
- ? "string"
130
- : T extends string [ ]
131
- ? "string[]"
132
- : "unknown"
121
+ ? typeof OptionalString
122
+ : T extends LogLevel
123
+ ? typeof LogLevel
124
+ : T extends AuthType
125
+ ? typeof AuthType
126
+ : T extends number
127
+ ? "number"
128
+ : T extends string
129
+ ? "string"
130
+ : T extends string [ ]
131
+ ? "string[]"
132
+ : "unknown"
133
133
134
134
export type Options < T > = {
135
135
[ P in keyof T ] : Option < OptionType < T [ P ] > >
@@ -282,7 +282,7 @@ export const options: Options<Required<UserProvidedArgs>> = {
282
282
} ,
283
283
"abs-proxy-base-path" : {
284
284
type : "string" ,
285
- description : "The base path to prefix all absproxy requests" ,
285
+ description : "The base path to prefix to all absproxy requests" ,
286
286
} ,
287
287
}
288
288
You can’t perform that action at this time.
0 commit comments