feather/webpack.config.js

9 lines
152 B
JavaScript
Raw Normal View History

2017-01-29 00:55:50 +03:00
var path = require('path');
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname),
filename: 'bundle.js'
}
}