Helps with ServiceWorker removal from your website. For more details
npm install webpack-remove-serviceworker-plugin
Then add it to the list of plugins in webpack.config.js
:
plugins: [
new RemoveServiceWorkerPlugin()
]
new RemoveServiceWorkerPlugin({ filename: 'sw.js' });
Default is: 'sw.js'
MIT