Changes UI dev server to operate over https

This commit is contained in:
Jared Tabor 2018-07-02 22:09:24 -07:00
parent 380df1b327
commit 92cf8d538a
No known key found for this signature in database
GPG Key ID: CC50E67C506270C9
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ const watch = {
stats: 'minimal',
publicPath: '/static/',
host: '127.0.0.1',
https: false,
https: true,
port: 3000,
clientLogLevel: 'none',
proxy: [{

View File

@ -28,7 +28,7 @@
"unit": "karma start test/unit/karma.unit.js",
"lint": "eslint .",
"dev": "webpack --config build/webpack.development.js --progress",
"watch": "webpack-dev-server --config build/webpack.watch.js --progress",
"watch": "webpack-dev-server --config build/webpack.watch.js --progress --https",
"production": "webpack --config build/webpack.production.js"
},
"devDependencies": {