diceware/webpack.config.js

18 lines
300 B
JavaScript
Raw Permalink Normal View History

2017-11-08 23:27:00 -05:00
//
// 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')
}
};