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
Solved by changing package.json:
package.json
"browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }
To:
"browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ ">0.2%", "not dead", "not op_mini all" ] }
Maybe it's worth updating the repo with it.
The text was updated successfully, but these errors were encountered:
although... I had to change both production and development to:
"browserslist": { "production": [ "chrome >= 67", "edge >= 79", "firefox >= 68", "opera >= 54", "safari >= 14" ], "development": [ "chrome >= 67", "edge >= 79", "firefox >= 68", "opera >= 54", "safari >= 14" ] }
Otherwise I got an error Cannot convert a BigInt value to a number. I found the fix here: starknet-io/starknet.js#37
Cannot convert a BigInt value to a number
Worked for me, but can't explain the actual root cause though...
Sorry, something went wrong.
No branches or pull requests
Solved by changing
package.json
:To:
Maybe it's worth updating the repo with it.
The text was updated successfully, but these errors were encountered: