Any idea how to disable these console.log messages from workbox in a NextJS project?. I just started a new repo and it is just giving me too much information I don't need now
workbox
Those messages only show up in development. You can disable them.
workbox.setConfig({ debug: false });
Or inside your service worker (make sure to do it before you use workbox)
service worker
self.__WB_DISABLE_DEV_LOGS = true
1.4m articles
1.4m replys
5 comments
57.0k users