Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Created April 27, 2017 18:31
Show Gist options
  • Save igmoweb/be67bef49b23e5db942fbea916afff9f to your computer and use it in GitHub Desktop.
Save igmoweb/be67bef49b23e5db942fbea916afff9f to your computer and use it in GitHub Desktop.
Basic Webpack config
var path = require('path');
module.exports = {
entry: './foo.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'foo.bundle.js'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment