Mozilla DOES NOT Update Source Code

I am developing a website.

I am testing it in
Mozilla.When I make changes to the javascript code of the site, I find that this change is not reflected in the browser (I checked the code in the Mozilla debugger)

I understand that this is a cache problem because when I clear the cache everything works correctly.

Did I identify the problem correctly?
If so, is there a way to get rid of Clearing Cache every time?

+4
source share
2 answers

Open the tools (F12). Go to Preferences> Advanced Parameters> Disable cache (when dev tool is open).

Thus, you disable the cache in dev mode and do not affect the navigation of other sites.

+7

Preferences.
Preferences->Advanced -> Network Override automatic cache management.
0.

+2

Source: https://habr.com/ru/post/1650166/


All Articles