Merge pull request #2395 from jaredevantabor/https-dev-server

Changes UI dev server to operate over https
This commit is contained in:
Jared Tabor 2018-07-03 09:30:41 -07:00 committed by GitHub
commit 4c1bc49258
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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": {