Ciantic
Explore posts from serversVinxi project such as solid-start doesn't work with Deno 2.0
Here is a repo: https://github.com/Ciantic/deno-solid-test
This most likely because Vinxi runs
node.exe
behind the scenes instead of deno.exe
.
It's notable that bun also has same error, but it can be fixed by using a flag --bun
that fakes bun.exe as node.exe.
Maybe deno needs similar functionality as bun.
4 replies
How to get 'client side' createResource behavior in SolidStart?
I noticed that if I don't have Suspense component in SolidStart, the whole page refreshes and
createResource
loading state doesn't render at all.
For example if use this snippet from regular docs in solidstart project:
It will not show loading text at all, just the whole page refreshes when typing to input.
This is quiet confusing when coming from normal SolidJS, that createResource loading
etc are now useless.
Thanks!76 replies