gatsby-gitbook-starter
gatsby-gitbook-starter copied to clipboard
node: --openssl-legacy-provider is not allowed in NODE_OPTIONS
I am facing this issue. Any ideas to resolve will be appreciated. `$ npm start
[email protected] start NODE_OPTIONS=--openssl-legacy-provider gatsby develop
node: --openssl-legacy-provider is not allowed in NODE_OPTIONS`
I ran into the same issue. After i updated all my dependencies I think that option is no longer needed. Try running gatsby directly with npx gatsby develop
. This worked for me so I removed that option from the npm start
script and it's working fine for me now.
Hope this helps
In my case, i change package.json
file.
I delete NODE_OPTIONS=--openssl-legacy-provider
option.
Ok let me try that and see if it works. Will let you know.