We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }
the above part does not allow the project to start in a Skill Network Labs environment or on macOS. i had to change it to :
"scripts": { "start": "export NODE_OPTIONS=--openssl-legacy-provider && react-scripts start", "build": "export NODE_OPTIONS=--openssl-legacy-provider && react-scripts build", }
this is only for start and build.
the error i get when i do not make the changes, trying npm start returns the error in the attachments
The text was updated successfully, but these errors were encountered:
export NODE_OPTIONS=--openssl-legacy-provider
Sorry, something went wrong.
ran command export NODE_OPTIONS=--openssl-legacy-provider but also receiving err missing script: "start"
Ensure that you're in the right directory, then run the "npm start " command.
No branches or pull requests
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
}
the above part does not allow the project to start in a Skill Network Labs environment or on macOS.
i had to change it to :
"scripts": {
"start": "export NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
}
this is only for start and build.
the error i get when i do not make the changes, trying npm start returns the error in the attachments
The text was updated successfully, but these errors were encountered: