Forked from learncodeacademy/webpack.config.js
Last active
November 18, 2016 11:14
-
-
Save rajatbarman/655a43e76b81a55b3164983eea37839c 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
//Explanation for the config file can be found here https://webpack.github.io/docs/configuration.html | |
var debug = process.env.NODE_ENV !== "production"; | |
var webpack = require('webpack'); | |
module.exports = { | |
context: __dirname, | |
devtool: debug ? "inline-sourcemap" : null, | |
entry: "./js/scripts.js", | |
output: { | |
path: __dirname + "/js", | |
filename: "scripts.min.js" | |
}, | |
module: { | |
loaders: [ | |
{ | |
test: /\.jsx?$/, | |
exclude: /(node_modules|bower_components)/, | |
loader: 'babel-loader', | |
query: { | |
presets: ['react', 'es2015', 'stage-0'], | |
plugins: ['react-html-attrs', 'transform-decorators-legacy', 'transform-class-properties'], | |
} | |
} | |
] | |
}, | |
//https://webpack.github.io/docs/list-of-plugins.html | |
plugins: debug ? [] : [ | |
new webpack.optimize.DedupePlugin(), | |
new webpack.optimize.OccurenceOrderPlugin(), | |
new webpack.optimize.UglifyJsPlugin({ mangle: false, sourcemap: false }), // Minifies JS Code | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment