How to disable or delete browser cache in Windows 10 on the Edge browser?
There are no options on preferences and developer tools (F12)
How to disable or delete browser cache in Windows 10 on the Edge browser?
There are no options on preferences and developer tools (F12)
Open Developer Tools then cache is disabled automatically. And click "Network" tab then click "Always refresh from server" button.
(It only works if the Developer Tools is open)
Just open Network and click on the selected icon (in the image). It will not cache till the dev tools are open.
In all edge shortcut properties (including system) add:
--disk-cache-dir=nul
and clear manually folders:
c:\Users\<USER>\AppData\Local\Microsoft\Edge\User Data\Default\Cache\
c:\Users\<USER>\AppData\Local\Google\Chrome\User Data\Default\Code Cache\
Now disk cache disable. usefull on ssd disks and working with: Chromium / Google Chrome / Opera / Edge
With so many of the functions from VS Code working seamlessly and automatically the repeated manual selection in Edge to turn off caching is really disappointing. For Chrome, I find the following works.
Python 3.11.4, aiohttp 3.8.5 and angular 16 using websockets.
ng build --configuration development --watch
start chrome --remote-debugging-port=9222 --disable-application-cache
{
"name": "chrome python",
"type": "chrome",
"request": "attach",
"port": 9222
},
Maybe this works for Edge. It's so hard to find command line switches for Edge I just couldn't be bothered trying. YMMV.