How to detect env in `createServerData`
npm run dev on my site, so I can render it locally in the browser and quickly iterate design.
With npm run build it'll create the code that is actually run on the server environment.
Now, inside of createServerData the db I have available on the server is not available when just running npm run dev, so I would like to inject some test-data....Uncaught ReferenceError: _$HY is not defined
yarn dev, but then I deploy it, I get:
Uncaught ReferenceError: _$HY is not defined
Uncaught ReferenceError: _$HY is not defined
createResource swallows error?
createResource. Here is some simplified example code:
```typescript
window.addEventListener('unhandledrejection', (e) => console.error(e));
window.addEventListener('error', (e) => console.error(e));
...Make signal react on prop change
const [error, setError] = createSignal(props.error);
const [error, setError] = createSignal(props.error);
Make sure the dom updates (equivalent of `tick` in Svelte)?
Solid Transition with createServerData$
const test = ['123', 'abc'] so I'm pretty sure the reason there is no animation is because of createServerData$. Actually it shows...How to use SolidJS Routes in Astro?

how to get two class managers to cooperate on a single ref?
Does SolidStart have CSRF protection by default?
Context not working as expected
Conditional tailwind css using signal
problem with "use:" and custom directives in tsx
Uncaught TypeError: _tmpl$6 is not a function
CreateResource Not complete Fetch (promise) when page first loads, but completes when VsCode Saves
HTTP trip, custom backend
createServerData$ sends a request to my other backend instead of straight to database and thats an additional trip (? if I got it right)
So the question is
...force a dom update when updating a signal before the rest of the onMount function
csvColumns is dependant on setData, how can I force the render update?
```jsx...Add a ref and make it also exposable
<input ref={ref} />
<input ref={ref} />
Running tests in docker fails, but works outside of docker
<body><div /><body>. Interestingly, when I run npm test outside the Docker container on my local machine, the test passes just fine and the debug correctly renders the application.
Here's the relevant code from my test file:
My test file:...Best way to implement a dialog in Solid.js
Reactivity when passing props down not reactive on nested component
ParentComponent.tsx
```typescript
...