Adaniya
Results
2
comments of
Adaniya
Hi, In my case, `.env` works without any setting `.env` ``` ELECTRON_WEBPACK_APP_HOGE=123 ``` be careful, `console.log(process.env)` I can not see `ELECTRON_WEBPACK_APP_HOGE` value but `console.log(process.env.ELECTRON_WEBPACK_APP_HOGE)` I can see it
@pocesar I tried same issue and now this works for me. ``` webPreferences: { nodeIntegration: true, nativeWindowOpen: true, } ``` it worked on dev, but not working after build or...