diceware/webpack.config.js

18 lines
305 B
JavaScript
Raw 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 = {
2017-11-09 19:43:36 -05:00
entry: './src/index.js',
2017-11-08 23:27:00 -05:00
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
};