As I dive into learning AngularJS, I've encountered a strange issue where changes made in my JS files don't always seem to take effect.
Even after seeing the GET
request to the file in the console, the content remains unchanged. I can delete all the contents of the file, yet the application still displays old data. Only when I delete the entire file does it recognize that something is amiss.
Is there possibly some sort of caching mechanism at play here that I need to be aware of?
I'm utilizing Laravel 5.1
, although Laravel is primarily handling routing duties at the moment.
Eventually, the updates do go through. Am I losing my mind or is this just one of the potential pitfalls to watch out for with AngularJS
?