Created
February 16, 2016 16:43
-
-
Save chuck0523/e0920b99373550822835 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
var path = require('path') | |
var webpack = require('webpack') | |
module.exports = { | |
entry: ['./src/index'], | |
output: { | |
path: path.join(__dirname, 'dist'), | |
filename: 'bundle.js' | |
}, | |
plugins: [ | |
new webpack.optimize.UglifyJsPlugin({ | |
compressor: { | |
warnings: false, | |
}, | |
}) | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment