World!
So as the title says, I have copied a template for a project, it has a bunch of heroku/pg/middleware configs already set up for me.
I have run into the 'ERR_OSSL_EVP_UNSUPPORTED' error when attempting to NPM START. I know I can downgrade to v16, I just passed the package.json
"scripts": {
"start": "PORT=4000 react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
And this fixed the issue and lets me start normally while still using v18.
I'm worried that down the road this may cause issues during deployment, does anyone have experience with this or a better fix than just the legacy ssl workaround?
Or would one recommend to start fresh and add all the configs myself and not risk it?