I have an electron app, that loads some css's from spring boot server. When I run app from npm from sources, I can run as
ng build && electron . --disable-http-cache
and it works without the cache. If I build my app with electron-packager to app.exe, how can I disable cache. Start .exe-file with --disable-http-cache doesn't work
UPDATE The only approach that works is to clear cache from main process before app loads the page. But is there any another way to disable cache?