Skip to content

Instantly share code, notes, and snippets.

@rodrigooler
Created April 13, 2018 01:38
Show Gist options
  • Save rodrigooler/9c9b0d8921be81f0e04ad5319088e92a to your computer and use it in GitHub Desktop.
Save rodrigooler/9c9b0d8921be81f0e04ad5319088e92a to your computer and use it in GitHub Desktop.
const path = require('path');
module.exports = {
entry: './path/to/my/entry/file.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'my-first-webpack.bundle.js'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment