diceware/webpack.config.js

18 lines
305 B
JavaScript
Raw Normal View History

2017-11-09 04:27:00 +00: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-10 00:43:36 +00:00
entry: './src/index.js',
2017-11-09 04:27:00 +00:00
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
};