mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-05 20:11:10 +08:00
16 lines
316 B
JavaScript
16 lines
316 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: false && 'source-map',
|
|
target: 'electron-main',
|
|
node: false,
|
|
};
|