apple2js/webpack.config.js
2019-03-04 19:55:35 -08:00

21 lines
424 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,
publicPath: '/dist/',
watchContentBase: true
}
};