I think I may have figured out how to do it in Quasar. It appears to be disabled after I uncommented the workboxPluginMode: ‘InjectManifest’ in the quasar.conf.js and then put the following in the src-pwa/custom-serviceworker.js
workbox.setConfig({
debug: false,
});
That seems to have done it. Once we get to needing all the information that workbox provides we can set it to true, however, during our current development phase, it is just a lot of noise.
Hope this helps someone else.