Electron – How to add external files?
Managed to solve it by using extraResources. Should be declared under build in your package.json file. For example: Create a new folder named extraResources adjacent to pacakge.json Add the following code to your package.json file: “build”: { “extraResources”: [“./extraResources/**”] } Then, you can access the files inside this folder by using __dirname + ‘/../extraResources/’ from … Read more