Hillcow
Hillcow

Reputation: 979

Disable Google Chrome Caching for Development

It's absolutely impossible for me to use Chrome for developing, because it caches javascript and css files. Even when using development mode, hell - even when I do the 'Empty Cache and Hard Reload' - it's still caching and does not reload!

Is there anything I can do to prevent Chrome from caching while using the 'inspect mode'?

Upvotes: 1

Views: 1964

Answers (2)

Rick S
Rick S

Reputation: 6586

To disable the Chrome cache for development do the following:

  1. Open the dev tools (Ctrl + Shift + J)
  2. Click on the ... menu in the Dev tools and pick Settings
  3. Scroll down to"Network" and you will see the option to disable the cache

enter image description here

Upvotes: 2

Related Questions