Open webbben opened 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.
yarn dev
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.
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:
Probably no need for a fix in the source code, just posting this here for future reference.