WeChatVideoDownloader/webpack.electron.js
2022-05-20 18:49:04 +08:00

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,
};