-
-
Notifications
You must be signed in to change notification settings - Fork 56
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
Render is Broken from Svelte 5 #157
Comments
|
To clarify I wasn't trying to install 5, I followed the instructions in the readme and Svelte 5 was installed, which crashed the application when I tried to run it. I think the npm scripts are installing Svelte 5 by default now that it's out of beta. |
Ah yes makes sense, I expect to release 0.15.0 soon so I'll leave it broken for now |
Excited for the next release! |
Same issue, took me a while to find out that it's caused by Svelte 5 because with SSR disabled the only error message I got was |
I had the same issue. I have downgraded svelte to 4.x.x in the package.json. It started working. "svelte": "^5.10.0", -> "svelte": "^4.2.19", |
As of 0.14.1 on Linux I get this error when trying to render a Svelte component in a LiveView template.
Solved by downgrading to Svelte 4 with
npm i svelte@4
in theassets
folder.The text was updated successfully, but these errors were encountered: