Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
116 views

I'm building a SolidStart app using the latest version (1.1.0) and cookie-based sessions for authentication. To check if a user is logged in, I created a server query() function called getUser() that ...
thePooyan's user avatar
0 votes
1 answer
404 views

I have an issue in SolidStart that this one conditional <Show> element is creating this not-too-specific error message, but all the other <Show>s are fine. Error: template2 is not a ...
Gabriel Cséfalvay's user avatar
1 vote
1 answer
305 views

I'm trying to wrap my head around how to best do nested layouting using SolidStart's file based routing. I have an old app with a "route alias" from "/" to "/some/nested/page/...
Viktor Hedefalk's user avatar
2 votes
1 answer
265 views

In my SolidJS and SolidStart project, I declared my CartContext in my CartContext.tsx export const CartContext = createContext<>(); const stateDefault = { ... }; export type StatesT = typeof ...
Russo's user avatar
  • 3,240
1 vote
1 answer
400 views

A new commer to solid.js, I'm following a tutorial to get some A routing in solid.js app's navbar . My App.jsx is code is like this: import { Router, Route, A } from "@solidjs/router"; ...
blnks's user avatar
  • 1,191
1 vote
1 answer
351 views

I want to use a slug in the URL (localhost:3000/birthdays/:id) to get an ID and then fetch that item using Pocketbase's JS SDK. On the first attempt, I get this error in my browser: Cannot read ...
Scott Scharl's user avatar
4 votes
1 answer
2k views

I want to run a solid.js project from a Docker container but I can't connect to the web-app via local host from my browser for some reason, but I was able to successfully do this with my next.js ...
Salim's user avatar
  • 41
2 votes
1 answer
387 views

I am trying to start a side project with SolidStart and I noticed some functions are named the same way a React hook would be named (eg: useLocation, useParams, etc...) I am confused by this somewhat ...
kaan_atakan's user avatar
  • 4,107
2 votes
1 answer
2k views

This is my first try on building a web app, so there might be an obvious answer but I have been struggling for some hours now. Thank you in advance. This is the code for the page this is about: import ...
MetaphysX's user avatar
3 votes
4 answers
4k views

Is there any way to render a component on the client side only in Solid Start. Just like in next js we can use dynamic to get ssr false. Is there any alternative for that in SolidJS? I tried to import ...
Jay Pokale's user avatar