Chrome Version : 66.0.3359.170 (Official Build) (64-bit)
Prior to version 66, I have been running Chrome in my development environment with the '--disable-web-security' switch to allow me to successfully connect my web application, running on
http://localhost:8100 with a web service server running on the same PC using HTTPS and the hostname of the server.
Since version 66 this no longer works. I believe the new Site Isolation feature is now getting in the way.
The connections are successful if I opt out of the site isolation trial with the following switch: chrome://flags/#site-isolation-trial-opt-out
However, I need a command line equivalent of this in my development environment (Visual Studio Code using the Debugger for Chrome add-in) and I can't find one so that I don't have to opt-out manually every time I start the web app.
Any help is much appreciated. This is a critical development workflow that is now making debugging of our web apps and PWA apps very difficult.