Skip to content

Commit c01e3fb

Browse files
committed
chore: update
1 parent a18f0c2 commit c01e3fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/node/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ export function normalizeDevToolsConfig(
2828
enabled: config === true || !!(config && config.enabled),
2929
config: {
3030
...(isObject(config) ? config : {}),
31-
clientAuth: isObject(config) ? config.clientAuth : true,
32-
host: isObject(config) ? (config?.host ?? host) : host,
31+
clientAuth: isObject(config) ? (config.clientAuth ?? true) : true,
32+
host: isObject(config) ? (config.host ?? host) : host,
3333
},
3434
}
3535
}

0 commit comments

Comments
 (0)