Files
Electron_Test/webpack.config.js
2024-04-07 09:46:14 +08:00

11 lines
216 B
JavaScript

const path = require('path');
module.exports = {
entry: './main.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
},
target: 'node' // 这是最关键的
};