API route in Route Group not picked up?
npm init solid@latest and create the file apiget.ts
```JSX
export function GET() {
return new Response('Hello World');...computations created outside a `createRoot` or `render` will never be disposed
keydown event attached to the document.
```..."AsyncLocalStorage" is not exported by "__vite-browser-external"
npm run build dies with ../node_modules/vinxi/runtime/http.js (70:9): "AsyncLocalStorage" is not exported by "__vite-browser-external", imported by "../node_modules/vinxi/runtime/http.js"
Any suggestions on how to fix it up? Using node v20.12.2...
About tracking re-renders and Store usage
Get the request header inside a form action? For Solid Start

“Push synchronization to the edge of the reactive graph”
Router preload and cache.set don't seem to be working
Is this (completely 🫣) illegal in Solid world?
Calling root render multiple times
root.render(<App someProp={43}/>), React will update the DOM as necessary to reflect the latest JSX you passed. Calling render on the same root again is similar to calling the set function on the root component.
What's the suggested way to achieve a similar behavior using solid render(() => <App />, document.getElementById("app"));?...Vite 5.2.x / Vitest 1.5.x: How to Resolve Multiple Instances of Solid
@solidjs/testing-library and vitest
```
stderr | file:~/Developer/github/.../nm/node_modules/solid-js/dist/dev.js:1932:13
You appear to have multiple instances of Solid. This can lead to unexpected behavior....When to use createEffect
todos signal is depended on my user signal. When there is a user, I want to subscribe to the todos collection, and when there isn't I want to unsubscribe. When there is again (login), I want to resubscribe (user could change too). Should I use createEffect for this? I thought you shouldn't set a signal inside a signal though? Here is my code:
```ts
export function useTodos() {
const _user = useUser();...Force effect computation, or alternate approach?
How to update a table of textfields? (stop re-rendering when users type)
direct Access to pages resulting in 404 error
Does the createMemo() in the "Solid in 100 secs" vid make sense?
createMemo() usage in the video makes sense, assuming computation was really heavy. Because I would think that squared only gets recomputed when its dependencies - count in this case - change. Here's the code:
```
function Counter() {...How do i make a dropdown menu?
getRequestEvent not return the correct type in monorepo
solid-js and @solidjs/start as peerDependencies in the package.json of the package. When I do import { getRequestEvent } from "solid-js/web";, it only returns the type from solid-js/web not the declare module in the solid/start. How can I fix this? Thanks.What's the correct way to make store persistent?
Why can't I change the path alias "~/*" to "@/*" in the tsconfig.json?
@/* would be easier on my keyboard. After changing it the imports work correctly in VS Code typescript, but when I run the app it complains that modules are not found.
Trying to change the alias to anything else other than ~/* (eg. src/*) also doesn't work.
Do I need to change it somewhere else to make it work for runtime?...Does SolidStart support private folders in the routes directory?