Jazcash
Jazcash
Got this compilation bug also. Moving it to `build/icon.png` fixes the compilation and I see the icon for the .exe but when launching the production executable it doesn't show in...
Also getting this issue: https://github.com/electron-vite/vite-plugin-electron/issues/70
Yeah 404 for them in browser too
It's definitely related to node integration because it's only when importing node-intended packages that the errors appear
It seems installing https://github.com/vite-plugin/vite-plugin-esmodule and adding those modules to it fixed the majority of the warnings for me
Getting this too, after a clone. If I clone with `noCheckout: true` then restart my app and do a `.checkout` then it works fine, but if I clone and checkout...
Changing the read function in FileSystem.js to log errors before returning null makes the problem more clear: ``` async read(filepath, options = {}) { try { let buffer = await...
``` const get = require('simple-get') get({ url: 'http://212.183.159.230/50MB.zip', method: "POST", headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36' } }, response); function response(err,...
Same thing on 14.18.1
Have found that if I split the clone and checkout process by adding `noCheckout: true` to clone and then doing ``` await git.checkout({ dir: "test", fs }); ``` right after,...