Skip to content

Instantly share code, notes, and snippets.

@sampsonbryce
Created June 17, 2016 21:35
Show Gist options
  • Save sampsonbryce/138e8f698e78c5fc92ca746ced4babf3 to your computer and use it in GitHub Desktop.
Save sampsonbryce/138e8f698e78c5fc92ca746ced4babf3 to your computer and use it in GitHub Desktop.
react webpack.config.js
module.exports = {
entry: __dirname + "/src/js/container.jsx",
devtool: 'source-map',
output: {
path: __dirname + "/dist",
filename: "bundle.js"
},
module: {
loaders: [{
test: /\.jsx$/,
exclude: /node_modules/,
loader: "babel-loader",
query: {
presets: ['es2015', 'react']
}
}]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment