Webpack plugin, which showws the amount of RAM used after compilation
npm install @decodeapps/webpack-memory-pluginDisplays amount of RAM used after the webpack compilation
In case of npmnpm i -D @decodeapps/webpack-memory-plugin
In case of yarn:yarn add -D @decodeapps/webpack-memory-plugin
Add following to the webpack.config.js:
``javascript
const WebpackMemoryPlugin = require('@decodeapps/webpack-memory-plugin');
// other plugins
module.exports = {
// other statements
plugins: [
new WebpackMemoryPlugin()
]
}
``