a webpack plugin for clearing Chrome dns & socket pools & htsts cache.
npm i webpack-dev-cache-clear-plugin -D
const WebpackDevCacheClearPlugin = require('webpack-dev-cache-clear-plugin')
module.exports = {
plugins: [
new WebpackDevCacheClearPlugin({
domains: ['google.com']
})
]
}