Skip to content

Commit

Permalink
fix(web): fix http-server proxyOptions arg converter (#11309)
Browse files Browse the repository at this point in the history
Fix the string interpolation in the http-server command arg converter for proxyOptions.

ISSUES CLOSED: #11302

Co-authored-by: Szabolcs Grünwald <sgruenwald@eurofunk.com>
  • Loading branch information
szabyg and szabyg committed Jul 28, 2022
1 parent 635825e commit 5614307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/executors/file-server/file-server.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function getHttpServerArgs(options: Schema) {

if (options.proxyOptions) {
Object.keys(options.proxyOptions).forEach((key) => {
args.push(`--proxy-options.${key}=options.proxyOptions[key]`);
args.push(`--proxy-options.${key}=${options.proxyOptions[key]}`);
});
}
return args;
Expand Down

0 comments on commit 5614307

Please sign in to comment.