Alex Lohr
Alex Lohr
Unfortunately, there are still some JS parts of solid-start that need to be converted before we can switch to full strict.
It is initialized if the base is "/". It still does not work if you have a directory in front of your root path.
I have tested yesterday and the issue if you use a sub path still persists with the current version.
Proposed change to support this: renderer.js:124 ``` function walkToFind(context, name) { var i = context.length; if (name === '.' && context[i - 2] instanceof Array) { return context[i - 1];...
Sorry, I haven't had the time to fix SSR. It's on my list.
If you release the Linux sources, I'll happily try to create a build template for @void-linux.
createEffect is not exactly like react's useEffect. Returning an unsubscribe handler is not going to accomplish anything and you also need no dependency array. The idiomatic solution would be to...
I believe we should try to solve this within the type system before admitting defeat and resorting to extend the API, e.g. using a switch generic like `` that needs...
Events, timeouts, promises are all out of the normal execution context and therefore, also out of the reactive root, which allows registering signals as dependencies. A simple solution is to...
At the moment, you can handcraft an alias from `src` to `/src`, but there's no custom resolver that would support multiple module directories as of now. I'm currently not sure...