Forked from learncodeacademy/webpack.config.js
Last active
February 18, 2017 18:23
-
-
Save petercunha/5b081b92852cf42962b8d1ac8d5329a1 to your computer and use it in GitHub Desktop.
Sample Basic Webpack Config
This file contains hidden or 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 debug = process.env.NODE_ENV !== "production"; | |
| var webpack = require('webpack'); | |
| var path = require('path'); | |
| module.exports = { | |
| context: __dirname, | |
| devtool: debug ? "inline-sourcemap" : null, | |
| entry: "./js/scripts.js", | |
| output: { | |
| path: path.join(__dirname, "/js"), | |
| filename: "scripts.min.js" | |
| }, | |
| plugins: debug ? [ | |
| // Development plugins | |
| ] : [ | |
| // Production plugins | |
| new webpack.optimize.DedupePlugin(), | |
| new webpack.optimize.OccurrenceOrderPlugin(), | |
| new webpack.optimize.UglifyJsPlugin({ mangle: false, sourcemap: false }), | |
| ], | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment