Skip to content

Instantly share code, notes, and snippets.

@StevenXL
Created March 16, 2016 21:39
Show Gist options
  • Select an option

  • Save StevenXL/17902ae5ecb90958d2fc to your computer and use it in GitHub Desktop.

Select an option

Save StevenXL/17902ae5ecb90958d2fc to your computer and use it in GitHub Desktop.
Medium Post - Webpack Config
module.exports = {
entry: "./app.js",
output: {
path: __dirname + "/dist",
filename: "bundle.js"
},
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: "babel-loader" }
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment