Skip to content

Instantly share code, notes, and snippets.

@timse
Created May 16, 2017 12:58
Show Gist options
  • Save timse/11e5d62b49fa0eef6ff7d62643fca7d3 to your computer and use it in GitHub Desktop.
Save timse/11e5d62b49fa0eef6ff7d62643fca7d3 to your computer and use it in GitHub Desktop.
// webpack.config.js
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: {
main: './src/foo',
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].[hash].js',
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment