Skip to content

Instantly share code, notes, and snippets.

@eltonea
Last active December 15, 2017 02:19
Show Gist options
  • Save eltonea/d041cfb2bdd44cd28906db2c370b9018 to your computer and use it in GitHub Desktop.
Save eltonea/d041cfb2bdd44cd28906db2c370b9018 to your computer and use it in GitHub Desktop.
webpack-simple
const displayText = (text) => console.log(text);
displayText('The powerfull webpack');
const path = require('path');
module.exports = {
entry: './main.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment