11 lines
129 B
JavaScript
11 lines
129 B
JavaScript
|
|
||
|
module.exports = {
|
||
|
input: 'main.js',
|
||
|
output: {
|
||
|
file :'bundle.js',
|
||
|
format: 'umd',
|
||
|
sourcemap: true,
|
||
|
compact: true
|
||
|
}
|
||
|
};
|