Skip to content

Commit

Permalink
fix: add devServer.server.type to useHttps judgement (#7222)
Browse files Browse the repository at this point in the history
  • Loading branch information
backrunner committed Jul 7, 2022
1 parent 07052c4 commit 0260e4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/@vue/cli-service/lib/commands/serve.js
Expand Up @@ -108,7 +108,8 @@ module.exports = (api, options) => {
const modesUseHttps = ['https', 'http2']
const serversUseHttps = ['https', 'spdy']
const optionsUseHttps = modesUseHttps.some(modeName => !!projectDevServerOptions[modeName]) ||
(typeof projectDevServerOptions.server === 'string' && serversUseHttps.includes(projectDevServerOptions.server))
(typeof projectDevServerOptions.server === 'string' && serversUseHttps.includes(projectDevServerOptions.server)) ||
(typeof projectDevServerOptions.server === 'object' && projectDevServerOptions.server !== null && serversUseHttps.includes(projectDevServerOptions.server.type))
const useHttps = args.https || optionsUseHttps || defaults.https
const protocol = useHttps ? 'https' : 'http'
const host = args.host || process.env.HOST || projectDevServerOptions.host || defaults.host
Expand Down

0 comments on commit 0260e4d

Please sign in to comment.