When using the local webpack dev server, is it pos...
# javascript
a
When using the local webpack dev server, is it possible to somehow enable https?
1
👀 1
I think I was able to enable https by adding the following to `webpack.config.d/devServerConfig.js:
Copy code
config.devServer = {
  ...config.devServer, // Merge with other devServer settings
  server: "https"
};