apple2js/webpack.config.js

21 lines
421 B
JavaScript
Raw Normal View History

2019-03-01 05:21:18 +00:00
/*globals require module */
const path = require('path');
module.exports =
{
devtool: 'source-map',
entry: {
main2: path.resolve('js/main2.js'),
main2e: path.resolve('js/main2e.js'),
2019-03-02 04:38:04 +00:00
test: path.resolve('js/test.js')
2019-03-01 05:21:18 +00:00
},
output: {
2019-03-02 04:38:04 +00:00
path: path.resolve('dist/')
2019-03-01 05:21:18 +00:00
},
devServer: {
compress: true,
watchContentBase: true,
writeToDisk: true
}
};