Created
July 24, 2017 11:33
-
-
Save jastuccio/9169ebff7cf7ac1773820614ca8ab8ee to your computer and use it in GitHub Desktop.
code in comments for https://webpack.academy/courses/196181/lectures/2987274
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Type into terminal | |
yarn add bundle-buddy-webpack-plugin webpack-bundle-analyzer --dev | |
// webpack.bundlebuddy.js | |
const webpackBundleBuddy = require("bundle-buddy-webpack-plugin") | |
module.exports = { | |
plugins: [ | |
new webpackBundleBuddy({sam: true}) | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment