I have an image upload API which makes a PUT request that includes a body with the image binary ( body: { file: [dom-file-object] } ). When the service worker is enabled, the body is excluded for the image upload api call. When the service worker is disabled, the api call works as expected.
How do you configure the service worker to ignore all PUT requests?