Raqueebuddin Aziz

Results 32 comments of Raqueebuddin Aziz

Currently, this is the only thing stopping me from publishing my app to prod :(

I did some digging apparently its the `renderAsync` function it expects a getStaticHTML function but only edge mode provides that, tried edge mode but it has other problems.

I tried monkey patching the getStaticHTML to return index.html but it didn't work, reason is above my area of knowledge. Hope this might help

well wouldn't for an spa index.html should be served regardless of the route?

other frameworks usually don't use serverless functions in spa mode and only serves /index.html as a static file. The user is required to redirect all 404s to /index.html to handle...

managed to find a workaround which I believe is pretty close to the solution. I added these redirect rules to my netlify site ``` /trpc/* /.netlify/functions/index 200 /* /index.html 200...

From the solidjs tutorial ``` Solid's compiler is smart enough to optimally handle ternaries (a ? b : c) and boolean expressions (a && b). ``` Plus replacing it with...

> What happens when you try to use the `Show` component? It only shows what the initial state of `appState.title` would show, this is the exact behaviour as ternary

That's what I tried but I believe this is another bug with solid-start right now that children `` do not override root.tsx ``