electron-vite/vite-plugin-electron

使用 child_process fork 的子进程文件打包被忽略了

Plumbiu opened this issue · 3 comments

image

我在 main.ts 中使用了 electronutilityProcess 模块 forkwatch.mjs,在开发环境里正常,但是打包后就没用了

主进程代码:

app.whenReady().then(() => {
  utilityProcess.fork(path.join(__dirname, './watch.mjs'))
  createWindow()
})

解决了