I was following this answer (thanks Ed) and found that he hadn’t completely solved the problem.
I’ve got SuperDevMode / CodeServer up and running, but it doesn’t include my html file(s), which makes it kinda useless. Do I really need to run 2 web servers?
I’m using Gradle, if that matters at all.
Here’s the answer I came up with. In my HTML file, I removed the script that loads my *.nocache.js and instead generated it dynamically, like so:
My Gradle task for running code Server looks like this:
So now, instead of having a second webserver, I can point my browser to file:///F:/projects/ConferenceModule/build/exploded/Admin.html and it all works.
I hope that helps somebody else.