-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
Page crashes upon refresh #13631
Comments
I wonder if this is a cyclical import issue. PageComponent.svelte imports components.js which imports PageComponent.svelte. If I remove the cyclical import, it seems to work without any crash. <script>
- import C from './components.js';
+ import Fieldset from './Fieldset.svelte';
const { foo } = $props();
</script>
<div>
<Fieldset --input-width="250px" />
<Fieldset --input-width="250px" />
</div> |
It's possible, although it confuses me why removing the If it helps this wasn't a bug before I updated my sveltekit dep, however the jump was fairly steep, going from |
This is to fix a current issue in svelte/sveltekit which broke the index exports, and breaks the page upon refresh. Might be able to be reverted once sveltejs/kit#13631 is resolved.
This is to fix a current issue in svelte/sveltekit which broke the index exports, and breaks the page upon refresh. Might be able to be reverted once sveltejs/kit#13631 is resolved.
Describe the bug
If you look at the reproduction stackblitz, click the "go to page" link, the page loads, and renders, without error. As soon as you then refresh that page, you get a "Uncaught (in promise) HierarchyRequestError: Failed to execute 'appendChild' on 'Node': This node type does not support this method." error. This completely breaks the page and you cannot recover.
I'm not entirely sure what is causing this. Some observations:
PageComponent.svelte
, the error goes away when you remove either:$props()
call in the<script></script>
--input-width
style variable that is passed into the Fieldset componentI am able to provide more info and help in any way I can - this bug is currently blocking my next deployment and I can't find a suitable workaround right now without a massive time commitment.
Reproduction
https://stackblitz.com/edit/sveltejs-kit-template-default-scix6sg7?file=src%2Froutes%2F%2Bpage.svelte
Logs
System Info
Severity
blocking an upgrade
Additional Information
One more thing to note is that this happens on both the development and production build.
The text was updated successfully, but these errors were encountered: