mirror of
https://github.com/whscullin/apple1js.git
synced 2024-11-22 04:33:34 +00:00
29 lines
587 B
JavaScript
29 lines
587 B
JavaScript
const path = require('path');
|
|
|
|
module.exports =
|
|
{
|
|
mode: 'development',
|
|
devtool: 'source-map',
|
|
entry: {
|
|
apple1: path.resolve('js/entry1.js')
|
|
},
|
|
output: {
|
|
path: path.resolve('dist/'),
|
|
library: 'Apple1',
|
|
libraryExport: 'Apple1',
|
|
libraryTarget: 'var'
|
|
},
|
|
devServer: {
|
|
compress: true,
|
|
static: {
|
|
watch: {
|
|
ignored: /(node_modules|test|\.git)/
|
|
},
|
|
directory: __dirname,
|
|
},
|
|
devMiddleware: {
|
|
publicPath: '/dist/',
|
|
},
|
|
},
|
|
};
|