Skip to content

Instantly share code, notes, and snippets.

@3dln
Last active October 14, 2020 07:54
Show Gist options
  • Save 3dln/10f501f7924dc6120f07186ab146c532 to your computer and use it in GitHub Desktop.
Save 3dln/10f501f7924dc6120f07186ab146c532 to your computer and use it in GitHub Desktop.
virgool webpack tutorial 3-1
const path = require('path');
module.exports = {
entry: './source/app.js',
output: {
filename: 'app.bundle.js',
path: path.resolve(__dirname, 'build'),
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment