I have been working on an expo electron app that uses @expo/electron-adapter so that the same codebase can be used for android, ios, and desktop (mac, windows, linux). But most of the files are autogenerated and I can't able to add a preload.js script to it like for a normal electron app. I have placed the preload.js file in electron/main folder. And while creating BrowserWindow passed this webPreferences: { preload: path.join('preload.js') } option to it. But the preload.js is not loading at all. Any help would be appreciated.