mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
21 lines
424 B
JavaScript
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
|
|
}
|
|
};
|