apple2js/webpack.config.js
2019-03-01 20:38:04 -08:00

21 lines
421 B
JavaScript

/*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'),
test: path.resolve('js/test.js')
},
output: {
path: path.resolve('dist/')
},
devServer: {
compress: true,
watchContentBase: true,
writeToDisk: true
}
};