I have the following setup in my webpack config file :
server: {
type: 'https',
options: {
key: readFileSync(getHttpsServerOptionFilePath('localhost-certificate-key.pem')),
cert: readFileSync(getHttpsServerOptionFilePath('localhost-certificate.pem'))
}
},
As you can see, I am serving the local IPv4 LAN address with https, using a locally self signed cert (with mkcert).
But your plugin has hardcoded the http:// protocol for the address... See this line
I have the following setup in my webpack config file :
As you can see, I am serving the local IPv4 LAN address with https, using a locally self signed cert (with mkcert).
But your plugin has hardcoded the http:// protocol for the address... See this line