We Are Going To Discuss About An unhandled exception occurred: Dev-server address info is not defined. So lets Start this Angular Article.
An unhandled exception occurred: Dev-server address info is not defined
In my case, the problem was with the not correctly generated self-signed certificate.
This command has correctly generated the certificate:openssl req -newkey rsa:2048 -keyout localhost.key -x509 -days 3650 -out localhost.crt -nodes -sha256
In my case, the problem was with the not correctly generated self-signed certificate.
This command has correctly generated the certificate:openssl req -newkey rsa:2048 -keyout localhost.key -x509 -days 3650 -out localhost.crt -nodes -sha256
Solution 1
In my case, the problem was with the not correctly generated self-signed certificate.
This command has correctly generated the certificate:
openssl req -newkey rsa:2048 -keyout localhost.key -x509 -days 3650 -out localhost.crt -nodes -sha256
Original Author Krzysztof Krupa Of This Content
Solution 2
I had this exact error, doing the same thing.
For me, it was a problem to do with the location of the certificate – I had some incorrect casing referring to it :facepalm: Fixing the casing solved the issue.
"sslCert": "../Development/ssl/...
should have been "sslCert": "../development/ssl/...
Original Author Jared Whittington Of This Content
Conclusion
So This is all About This Tutorial. Hope This Tutorial Helped You. Thank You.