Home

Awesome

Webpack Chrome Extension Reloader npm version

Webpack Chrome Extension Reloade images

Installation

npm install wcer --save-dev
// or
yarn add wcer --dev

Usage

Add wcer to the plugins section of your webpack configuration file.

const path  = require('path');
const ChromeReloadPlugin  = require('wcer');

module.exports = {
//...
    plugins: [
      new ChromeReloadPlugin({
        port: 9090, //optional, default: 9090
        manifest: path.join(__dirname, '..', 'src', 'manifest.js')
      })
    ] 
//...
}

Example