Files
feather/webpack.config.js
2017-01-28 13:55:50 -08:00

9 lines
152 B
JavaScript

var path = require('path');
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname),
filename: 'bundle.js'
}
}