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 de6e37e commit 3a52f55Copy full SHA for 3a52f55
src/configuration.ts
@@ -53,7 +53,14 @@ async function readConfig() {
53
}
54
55
56
- const configMerged = { ...configFromConfigFile, ...configFromCliArgs };
+ const configMerged = {
57
+ ...configFromConfigFile,
58
+ ...configFromCliArgs,
59
+ context:
60
+ configFromCliArgs.context && configFromCliArgs.context?.length > 0
61
+ ? configFromCliArgs.context
62
+ : configFromConfigFile?.context,
63
+ };
64
const debuggerId = await generateDebuggerId(!!configMerged.observable);
65
setConfig({
66
...configMerged,
0 commit comments