We are developing Angular(4) app and we enabled service workers using the cli
Everything works great except that we have a file upload progress bar that is stuck on 0% and only after it finishes it goes to 100%.
We suspect it's because of the service worker since we do not see it on our dev env.
What is strange that from my understanding service workers shouldn't work on posts requests.
We use regular HttpClient
for it.
How can this be fixed?
Edit:
Now I'm sure it is something related to service workers because when I press on "Bypass for network" in the application tab it works fine.