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
Just wanted to open this to save someone an hour or two some day in the future.
Above a certain number of vertices seems to run into the "Too much recursion" bug when developing locally.
Uploads were working just fine on your example site: https://unsoundscapes.com/elm-obj-file/examples/viewer/ but then when I went to use them in development it would blow up 😞.
Turning off the elm debugger (using Vite this was: elmPlugin({ debug: false})) fixes it.
elmPlugin({ debug: false})
The text was updated successfully, but these errors were encountered:
Does it happen when parsing or when the debugger wants to print the model?
You can try storing the result wrapped in a function to hide it from the debugger (\_ -> result)
(\_ -> result)
Sorry, something went wrong.
No branches or pull requests
Just wanted to open this to save someone an hour or two some day in the future.
Above a certain number of vertices seems to run into the "Too much recursion" bug when developing locally.
Uploads were working just fine on your example site: https://unsoundscapes.com/elm-obj-file/examples/viewer/ but then when I went to use them in development it would blow up 😞.
Workaround
Turning off the elm debugger (using Vite this was:
elmPlugin({ debug: false})
) fixes it.The text was updated successfully, but these errors were encountered: