mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
22 lines
446 B
JavaScript
22 lines
446 B
JavaScript
const path = require('path');
|
|
|
|
module.exports =
|
|
{
|
|
devtool: 'source-map',
|
|
entry: {
|
|
main2: path.resolve('js/entry2.js'),
|
|
main2e: path.resolve('js/entry2e.js')
|
|
},
|
|
output: {
|
|
path: path.resolve('dist/'),
|
|
library: 'Apple2',
|
|
libraryExport: 'Apple2',
|
|
libraryTarget: 'var'
|
|
},
|
|
devServer: {
|
|
compress: true,
|
|
publicPath: '/dist/',
|
|
watchContentBase: true
|
|
}
|
|
};
|