[Vuejs]-[ElectronJS][VueJs] ERR_OSSL_EVP_UNSUPPORTED

0👍

Node version 20 is new, while electron 13 is quite old (it uses nodejs v14.17.0 internally).

So I would upgrade electron. I personally like to do this version by version while reading the changelog for breaking changes, but in your case (small project) I would just install the newest electron version (which is 25 as of today) and see what happens.

If an api is not working then consult the api documentation: https://www.electronjs.org/docs/latest/api/app

Leave a comment