Created
July 2, 2016 16:55
-
-
Save gauravtiwari/c87154489f7a7080f7a30535b9bbabf7 to your computer and use it in GitHub Desktop.
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
// Initialize plugins for webpack | |
var config = require('./config.js'); | |
var webpack = require('webpack'); | |
// Define empty plugins array | |
config.plugins = [ | |
new webpack.optimize.DedupePlugin(), | |
new webpack.optimize.UglifyJsPlugin({ /* can pass many options */ }) | |
]; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment