How to turn off caching on Firefox?

后端 未结 17 775
失恋的感觉
失恋的感觉 2020-11-28 00:26

During development I have to \"clear cache\" in Firefox all the time in order to make it use the latest version of JavaScript files.

Is there some kind of setting (a

17条回答
  •  北海茫月
    2020-11-28 01:00

    Enter "about:config" into the Firefox address bar and set:

    browser.cache.disk.enable = false
    browser.cache.memory.enable = false
    

    If developing locally, or using HTML5's new manifest attribute you may have to also set the following in about:config -

    browser.cache.offline.enable = false
    

提交回复
热议问题