Skip to content

Commit dbd9c99

Browse files
committed
Fix conditional check
1 parent a51f7df commit dbd9c99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ function resolveLaravelPlugin(pluginConfig: Required<PluginConfig>): LaravelPlug
164164
},
165165
https: typeof userConfig.server?.https !== 'undefined' ? userConfig.server.https : {
166166
...serverConfig.https,
167-
...(userConfig.server?.https === true ? {} : userConfig.server?.https),
167+
...(typeof userConfig.server?.https === 'undefined' ? {} : userConfig.server?.https),
168168
},
169169
} : undefined),
170170
},

0 commit comments

Comments
 (0)