In today’s web development landscape, HTTPS isn’t just for production—it’s a necessity for local development and testing. Modern browsers enforce strict security policies, and features like authentication cookies or service workers require HTTPS even during development. Using localhost works, but it often comes with hidden restrictions. Instead, adopting a dedicated local development domain (like .test …
Category Archives: ASPNET Core
Startup configure method
Did you know that you can inject any object in the Configure method of your startup class? For example if you want to inject ICustomer.