You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
node reported an error: not find XXXXX
XXXX is the value of npm3Package
After testing, it is caused by the use of variables in require,
In line 35 of the file @ffmpeg-installer/ffmpeg/index.js:
packageJson = require(npm3Package);
I modified it to:
packageJson = require(''+npm3Package);
The program can run normally, so...
The text was updated successfully, but these errors were encountered:
My operating environment is as follows:
macOS 11.23
electron 13.0.1
Run the following code in the main process of electron:
node reported an error: not find XXXXX
XXXX is the value of npm3Package
After testing, it is caused by the use of variables in require,
In line 35 of the file @ffmpeg-installer/ffmpeg/index.js:
packageJson = require(npm3Package);
I modified it to:
packageJson = require(''+npm3Package);
The program can run normally, so...
The text was updated successfully, but these errors were encountered: