how do i use Drizzle?
Problems changing the value of a reactive signal returned from a function
OptionalParams in route not working
Reactivity resulting from updates in a websocket event listener
count2 (that is set in the setInterval callback), but not for count (that is set when a message is received on the websocket).
I can see from the console.log in the message event handler that the values passed to setCount are changing. So my expectation is that the rendered value should change.
I don't doubt that the reason for this is covered somewhere in the docs. I suspect that I'm simply misreading or misunderstanding something....How do i conditionally add something to <head> based on what createAsync returns?
createAsync so then i can decide whether i should add google recaptcha to <head> using useHead from @solidjs/meta
```ts
const getChat = cache(async () => {
return { messages: [{ text: "hi", author: "me" }] };
}, "chat");...How do you delete an entry in an array when using `createStore`
Uncaught ReferenceError: React is not defined
What do I do if I have to wait for things to happen, meanwhile define extra state or what
Vinxi build failing in CI
Error: [vite:load-fallback] Could not load /home/runner/work/website-broken-ci/website-broken-ci/website/src/app.tsx (imported by node_modules/.pnpm/@solidjs+start@1.0.0-rc.1_solid-js@1.8.17_vinxi@0.3.11_vite@5.2.11/node_modules/@solidjs/start/dist/server/StartServer.jsx): ENOENT: no such file or directory, open '/home/runner/work/website-broken-ci/website-broken-ci/website/src/app.tsx'https://github.com/alven-shin/website-broken-ci/actions/runs/9149884716/job/25154004092 ...
Reactivity in single table cell from memoized data
Insights on my component library
Assistance with SolidStart and Supabase Auth in SSR
SolidStart with the @supabase/ssr package.
The Supabase package expects:
```ts
import { createBrowserClient, createServerClient, type CookieOptions } from '@supabase/ssr'...Why is solid start dev site so heavy?
pnpm create solid, picked the basic template, then ran dev to encounter almost 10mb of js being loaded. I'm aware that building will minify, bundle and tree shake most of this, but building takes almost 6 seconds to build an empty app, even when building after a succesful build.
Something as equally confusing is that the heaviest resource is 1.5mb of shikiji, a syntax highlighter.
I found this issue, maybe related? https://github.com/solidjs/solid-start/issues/1281...<Show /> vs React-style conditional rendering.
Reactivity in single cell in nested For tags
Filter and <For each />
.filter with For each={} />
Like:
...Is it possible to have a nextjs-style app router?
app/) route.ts are API calls and page.ts are pages.
Is the intention to not move in that direction to clearly separate API code from client side code?...Potential upstream problem in solid for users of Astro + solid + cloudflare?
I'm not sure who might be helpful to ping on any of this, and I tried to look around for any related issues in this discord, but wasn't sure. Can someone from the solid team perhaps weigh in on these issues? Specifically, you'll see https://github.com/withastro/adapters/issues/263#issuecomment-2117106206, with suggests this might be the upstream issue?...
Does the Solid compiler convert JSX to template variables? Know anything about this issue here?
var _tmpl$ = template(...)?
This library I'm using seems to be facing an issue where when it's deployed to npm, it loses the quotes in the template. For instance:
<div class="sonner-loading"/> becomes div class=sonner-loading/>...