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.jsonfile:"build": { "extraResources": ["./extraResources/**"] } -
Then, you can access the files inside this folder by using
__dirname + '/../extraResources/'from your main app.