How to make an Isomorphic Component Library?
How to access browser language during SSR?
SPA you would normally access navigator.language but during SSR the navigator is undefined. How can I access the browser language/locale during SSR?Register custom component props without default values
how to make a route working after page reload
It works while I'm surfing from the root page to other pages. But once I refreshed a page, that is not root, it stop working. It throws 404. The mistake is showed just on production build. When I use
npm start it works properly. What may be the reasons?...
Does SolidStart Have a Global `Context` That Server Functions Can Use?
context" that is globally available to all server functions. For instance, Svelte Kit has event.locals (https://kit.svelte.dev/docs/load#shared-state), which can be set at the server entry point (hooks.server.ts). This context info is then available to all of the server data loaders.
Similarly, Remix passes a context argument to its loader and actions. The value of context can be set by getLoadContext (https://remix.run/docs/en/v1/route/loader#context).
Does SolidStart have anything similar? Or are there at least plans to add something like this in the future? Having a global context is really helpful when it comes to user identifiers....how do i make my component to accept class and classList ?
disposing of a `createRoot` nested inside a `createEffect`?
SSR build failing
esbuild and esbuild-plugin-solid. In order to access solid, I have an import map where solid-js uses npm:solid-js and solid-js/web, ditto.
In order to run the app, I need to import the SSR build. However, the following error occurs
```...solid-router nested routes - access child params from parent component
Math.random() overwritten on hydration
<span class="skeleton-text text-clip whitespace-nowrap">{"a".repeat(7 + Math.floor(Math.random() * 20))}</span>
<span class="skeleton-text text-clip whitespace-nowrap">{"a".repeat(7 + Math.floor(Math.random() * 20))}</span>
how to add package to https://www.solidjs.com/ecosystem?
window.getComputedStyle returns react-style CSSStyleDeclaration?
const style = window.getComputedStyle(node) style has type CSSStyleDeclaration which follows react's camelCase formatting. I could cast it to JSX.CSSProperties but JSX.CSSProperties allow for numbers | string while window.getComputedStyle only returns string.
what would be the solid way to type this?...add fade-in and fade-out animations when navigating routes (using solid-routes)
Loading google fonts
Resource not being called when componet loads
Updating signal value doesn't always update DOM?

vite-template for building libraries
Await Resource
get types of HTMLElement-attributes
React.TextareaHTMLAttributes<HTMLTextAreaElement>?
Can't seem to find anything about in the docs...Passive Event Listeners
onWheel as { passive: true }
```jsx
import "./NewsElements.scss";
import { NewsElement } from "./NewsElement";...