diceware/webpack.config.js
2017-11-08 23:27:00 -05:00

17 lines
300 B
JavaScript

//
// Use the path module so that this will work on Windows systems
//
var path = require('path');
//
// Compile main.js (and its dependencies) into dist/bundle.js.
//
module.exports = {
entry: './main.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
};