Open
Description
Can we run the dev server over https?
I created locally signed ssl keys using mkcert
, by following this guide: https://web.dev/how-to-use-local-https/
After setting up the cert and key files to my root directory, I added this to my dev server config:
...
sslKey: 'localhost-key.pem',
sslCert: 'localhost.pem',
};
I still cannot access my local ( localhost:8000 ) using https protocol. Am I missing something?