gpt4 book ai didi

node.js - 如何为electron.js构建React文件

转载 作者:行者123 更新时间:2023-12-03 12:37:17 25 4
gpt4 key购买 nike

我正在使用 Electron 构建一个应用程序并起 react 。当我在react上运行build并尝试在 Electron 中使用文件时,我最终遇到了error in electron webdev tools
我将启动模板用于 Electron here:

const { app, BrowserWindow } = require('electron')

function createWindow() {
const win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
})

win.loadFile('UI/index.html');
}

app.whenReady().then(createWindow)

app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})

app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
有什么方法可以使这些文件变得 Electron 化,从而使HTML文件不会在“/”目录中查找js文件?

最佳答案

我相信我们需要看更多您的项目(也许发布它的github仓库?)才能提供帮助。从图片的外观来看,似乎是一个webpack错误。
我想推荐 secure-electron-template (免责声明:我是作者),它从一开始就内置了对Electron的React支持。

关于node.js - 如何为electron.js构建React文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66122430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com