我用Electron构建我的项目。它在Nodejs上运行。我用Electron-Packager编译这个项目。它运行了,但是当我移动编译的文件夹时,项目不会运行,我得到了一些路径错误。
export function getSafeWPPath(): string {
let home = app.getPath('home');
home = path.resolve(home, ".SafeWP");
if (!fs.existsSync(home)) {
fs.mkdirSync(home);
}
return home;
}
我得到
Uncaught Exception:
TypeError: Cannot read property 'resolve' of undefined
at getSafeWPPath
1条答案
按热度按时间eyh26e7m1#
这是因为它找不到路径模块。请确保您已经将“路径”添加到依赖项而不是dev依赖项。