Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 399 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 399 Bytes

webpack-dev-cache-clear-plugin

a webpack plugin for clearing Chrome dns & socket pools & htsts cache.

Installation

npm i webpack-dev-cache-clear-plugin -D

Usage

const WebpackDevCacheClearPlugin = require('webpack-dev-cache-clear-plugin')

module.exports = {
    plugins: [
        new WebpackDevCacheClearPlugin({
            domains: ['google.com']
        })
    ]
}