b-eee / Work_management_app

MIT License
0 stars 0 forks source link

Workaround for digital envelope routines::unsupported #35

Open webbben opened 3 months ago

webbben commented 3 months ago

Just a PSA: if you run into an error like this upon running the development server (yarn dev), it might be related to OpenSSL for an older version of nodejs.

Error: error:0308010C:digital envelope routines::unsupported

This workaround works for me:

export NODE_OPTIONS=--openssl-legacy-provider
yarn dev

Probably no need for a fix in the source code, just posting this here for future reference.