Skip to content

Commit

Permalink
feat(@quasar/app): Allow cordova dev mode to run on HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Feb 25, 2019
1 parent e133cd4 commit 3c85b71
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/lib/quasar-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,10 +489,11 @@ class QuasarConfig {
cfg.devServer.contentBase = false
}
else if (this.ctx.mode.cordova || this.ctx.mode.electron) {
Object.assign(cfg.devServer, {
https: false,
open: false
})
cfg.devServer.open = false

if (this.ctx.mode.electron) {
cfg.devServer.https = false
}
}

if (this.ctx.mode.cordova) {
Expand Down

0 comments on commit 3c85b71

Please sign in to comment.