cccamp19-map/webpack.config.js

10 lines
145 B
JavaScript
Raw Normal View History

2017-01-03 21:41:31 +00:00
const webpack = require('webpack');
2016-12-24 18:32:40 +00:00
module.exports = {
entry: './main.js',
output: {
2018-06-26 22:01:18 +00:00
path: __dirname,
2016-12-24 18:32:40 +00:00
filename: 'bundle.js'
2017-01-03 21:41:31 +00:00
},
2016-12-24 18:32:40 +00:00
};