报错信息
Uncaught ReferenceError: require is not defined
at index.html:93
解决方法:设置 nodeIntegration: true
mainWindow = new BrowserWindow({
minWidth: 300,
backgroundColor: "#fff",
webPreferences: {
nodeIntegration: true,
},
});
Uncaught ReferenceError: require is not defined
at index.html:93
mainWindow = new BrowserWindow({
minWidth: 300,
backgroundColor: "#fff",
webPreferences: {
nodeIntegration: true,
},
});