2018-04-19 15:25:31 +08:00
|
|
|
var path = require('path');
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
2018-05-23 16:44:57 +08:00
|
|
|
//mode: 'development',
|
|
|
|
|
mode: 'production',
|
2018-04-19 15:25:31 +08:00
|
|
|
entry: './src/weRequest.js',
|
|
|
|
|
output: {
|
|
|
|
|
path: path.join(__dirname, 'build'),
|
|
|
|
|
filename: 'weRequest.js',
|
|
|
|
|
library: "weRequest",
|
|
|
|
|
libraryTarget: "commonjs-module"
|
|
|
|
|
},
|
2018-05-23 16:44:57 +08:00
|
|
|
//devtool: 'inline-source-map'
|
2018-04-19 15:25:31 +08:00
|
|
|
}
|