1 min read

Disable Chrome "Requests may be overridden locally"

If you have inadvertently activated Enable Local Overrides in Chrome DevTools, you may have encountered unexpected issues while debugging your web application.

Chrome DevTools - Requests may be overridden locally

In my particular case, changes to my Astro blog were not reflected upon reloading the browser; only the browser itself was refreshed, not the content. However, the issue was resolved when I closed the DevTools.

To address this problem, follow these steps:

  • Open Chrome Devtools
  • Navigate to the Sources tab and select the Overrides sub-tab.
  • Uncheck the option for Enable Local Overrides

Chrome DevTools - Uncheck "Enable Local Overrides"

Your issue should now be resolved.