You should check the caching settings of your local HTTP server - if it says to cache resources for, say, 7 days, then the browser will honour that, and if you change the code then Construct will only get the old cached data even when it tries to retrieve the latest code. Usually a HTTP header like Cache-Control: no-store
is the solution, but then you may still need to clear the cache after setting that.