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 a18f0c2 commit 43464a6Copy full SHA for 43464a6
packages/core/src/node/config.ts
@@ -28,7 +28,7 @@ export function normalizeDevToolsConfig(
28
enabled: config === true || !!(config && config.enabled),
29
config: {
30
...(isObject(config) ? config : {}),
31
- clientAuth: isObject(config) ? config.clientAuth : true,
+ clientAuth: isObject(config) ? (config.clientAuth ?? true) : true,
32
host: isObject(config) ? (config?.host ?? host) : host,
33
},
34
}
0 commit comments