0.1.1 • Published 2 years ago

wdyr-webpack-plugin v0.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

wdyr-webpack-plugin

wdyr-webpack-plugin

webpack plugin for why-did-you-render

usage

Install

# by npm
$ npm install wdyr-webpack-plugin
# by yarn
$ yarn add wdyr-webpack-plugin

enable whyDidYouRender

// webpack.config.js
const WdyrWebpackPlugin = require('wdyr-webpack-plugin');

module.exports = {
  plugins: [
    new WdyrWebpackPlugin({
      enable: process.env.NODE_ENV === 'development',
      // other options
    })
  ]
}

You can checkout the fully config options from why-did-you-render#options.