Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To disable the workbox browser console messages, you can add the following code to your service worker file:

workbox.setConfig({
  debug: false,
});

This will disable all of the workbox logging in the browser console. You can also set the debug option to true if you want to enable logging again.