我正在研究Electron app。 我使用以下命令为win32构建:
electron-packager ./app/ feb --prune --platform=win32 --arch=x64 --overwrite=true
构建过程完成得很好,没有错误。
达尔文的构建运行良好,没有任何错误。但是win32的构建会在控制台中引发cannot find module
错误。与我尝试要求的本地文件相关的错误:
Uncaught Error: Cannot find module './config/menu.js'
这是./config/menu.js
文件内容:
var config = {}
config.window = {
title: 'App Name',
width: 950,
height: 800,
show: true,
center: true
}
module.exports = config
这就是我从renderer.js
:
var menuTemplate = require('./config/menu')
有什么想法吗? 感谢。