How to run Webpack Dev Server --https --hot --inline
Is there a way to leverage running the webpack-dev-server on https when configuring using CLI? The problem is the connection to socket.io is over http and not https . A workaround exists, but its very annoying. Manually include https webpack-dev-server in your index.html <script src="https://localhost:8080/webpack-dev-server.js"></script> Configure each end point to include webpack/hot/only-dev-server . app: [ 'webpack/hot/only-dev-server', './app.js' ], // ... more entry points that include the same [] ... Yes there is a way to configure webpack-dev-server on https when configuring using CLI.