Ask questions"Maximum call stack size exceeded"
<!-- Thanks for raising an issue! (For questions, we recommend instead using https://stackoverflow.com and adding the 'svelte' tag.)
To help us help you, if you've found a bug please consider the following:
Reproductions should be small, self-contained, correct examples – http://sscce.org.
Occasionally, this won't be possible, and that's fine – we still appreciate you raising the issue. But please understand that Svelte is run by unpaid volunteers in their free time, and issues that follow these instructions will get fixed faster.
If you have a stack trace to include, we recommend putting inside a <details> block for the sake of the thread's readability:
<details> <summary>Stack trace</summary>
Stack trace goes here... </details> -->
Recursion bug on svelte > 3.6.6 when creating a component using client-side component API. To reproduce: https://svelte.dev/repl/6fbeea34d77f43b9a6d57e1da71668fc?version=3.6.7 This works on 3.5.4.
<details> <summary>Error</summary> bundle.js:18532 Uncaught (in promise) RangeError: Maximum call stack size exceeded </details>
Answer
questions
vedam
I think I ran into this one too.
Trying to replace dom-elements (coming from .md in my real app) with svelte-components.
I'm pretty sure it worked with 3.5.1 (tried up to) 3.6.3 before updating to 3.6.7.
https://svelte.dev/repl/f3cb47560fcd4decbcabfd42e376607b?version=3.6.3 https://svelte.dev/repl/f3cb47560fcd4decbcabfd42e376607b?version=3.6.7
Related questions