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