Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 813 Bytes

File metadata and controls

29 lines (21 loc) · 813 Bytes

Featured on Openbase

🐏 Webpack Memory Plugin

Displays amount of RAM used after the webpack compilation Screenshot of Plugin

Installation

In case of npm npm i -D @decodeapps/webpack-memory-plugin

In case of yarn: yarn add -D @decodeapps/webpack-memory-plugin

Example

Add following to the webpack.config.js:

const WebpackMemoryPlugin = require('@decodeapps/webpack-memory-plugin');
// other plugins

module.exports = {
  // other statements
  plugins: [
    new WebpackMemoryPlugin()
  ]
}