MyWeChatVideoDownloader/webpack.electron.js
2024-01-03 16:16:00 +08:00

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