Skip to content

Instantly share code, notes, and snippets.

@3dln
Created October 14, 2020 07:50
Show Gist options
  • Save 3dln/5ab89822909b2330a05fdf2e9a143512 to your computer and use it in GitHub Desktop.
Save 3dln/5ab89822909b2330a05fdf2e9a143512 to your computer and use it in GitHub Desktop.
virgool - webpack tutorial - 4-2
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
module: {
rules: [],
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment