mirror of
https://github.com/luochaolun/MyWeChatVideoDownloader.git
synced 2025-04-04 23:06:26 +08:00
19 lines
347 B
JavaScript
19 lines
347 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: path.resolve(__dirname, './electron/index.js'),
|
|
output: {
|
|
filename: 'index.js',
|
|
path: path.resolve(__dirname, './build-electron'),
|
|
},
|
|
module: {
|
|
rules: [],
|
|
},
|
|
devtool: 'source-map',
|
|
target: 'electron-main',
|
|
node: false,
|
|
stats: {
|
|
errorDetails: true,
|
|
},
|
|
};
|