电子将html放到node_modules电子default_app.asar

时间:2019-01-29 10:21:27

标签: javascript node.js electron

我在main.js中有index.htmldist/。 然后我在runner.js中运行电子,例如:

const { spawn } = require('child_process');
const electron = require('electron');
spawn(electron, ['path/to/main.js']);

然后我加载index.html,例如:

new BrowserWindow().loadFile('absolute/path/to/index.html');

但是出现此错误:

Not allowed to load local resource: file//...

主进程正在node_modules/electron/dist/Electron.app/Contents/Resources/default_app.asar/中运行,因此我想将index.html放入此目录。
我该怎么办?谢谢。

0 个答案:

没有答案