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
When I try to render children via the new @render annotation, I get the following error:
❌ Encountered error in src/routes/+layout.svelte Unexpected character '@'
This is my layout. Using the <slot /> directive instead works fine. Also removing the houdini plugin from the vite config fixes the error.
<slot />
</script lang="ts"> let { children }: { children: Snippet } = $props(); </script> <ParaglideJS {i18n}> {@render children()} <!-- <slot /> --> <Footer /> <LanguageSwitcher /> </ParaglideJS>
No response
The text was updated successfully, but these errors were encountered:
Svelte 5 will only be supported once it releases into stable 5.0 - but you can play around with our preview release with the @canary tag on npm.
@canary
Sorry, something went wrong.
I see. Thought since #1300 is merged this is done. Thanks for the quick response, I'll give that a shot!
No branches or pull requests
Describe the bug
When I try to render children via the new @render annotation, I get the following error:
This is my layout. Using the
<slot />
directive instead works fine. Also removing the houdini plugin from the vite config fixes the error.Reproduction
No response
The text was updated successfully, but these errors were encountered: