fsb_backbone/webpack.config.js

16 lines
242 B
JavaScript
Raw Normal View History

2021-03-12 07:55:43 +00:00
const path = require('path');
const config = {
'entry': {
'app':['./app/app.js']
},
'output': {
'path': path.resolve(__dirname, 'live/js'),
'filename': 'bundle.js'
},
'mode': 'development'
};
module.exports = config;