Cyber Grandma
Explore posts from serversvxini seems to be packaging and shipping all server code to the client
I have had similar problems every time I was trying to make route loaders in client code, even with all the proper "use server"s.
It was happening whenever I imported my
db
object. Even though it was used only in the server side functions.
What I found out is that because my db.ts
file had exported my const db =...
object directly, importing this file involves side effects. So the tree shaker assumes that even if db
is not used in the client side, it should still try to load the db.ts
file there. And because the db.ts
also imported stuff like ORM, postgresjs and others, it crashed my whole app on the client side.
If you have the same situation, you need to make something like a getDatabase()
function instead of exporting the db singleton.40 replies
DTDrizzle Team
•Created by Cyber Grandma on 11/5/2024 in #help
Filter based on join data
Thanks, that's what I ended up doing.
13 replies
DTDrizzle Team
•Created by Cyber Grandma on 11/5/2024 in #help
Filter based on join data
Thanks 🫡
13 replies
DTDrizzle Team
•Created by Cyber Grandma on 11/5/2024 in #help
Filter based on join data
In the docs https://orm.drizzle.team/docs/rqb#select-filters there is a
where
inside of the query but when I try it this option doesn't exist13 replies
DTDrizzle Team
•Created by Cyber Grandma on 11/5/2024 in #help
Filter based on join data
But I couldn't find a way to do it with query builder
13 replies
DTDrizzle Team
•Created by Cyber Grandma on 11/5/2024 in #help
Filter based on join data
Fiddling around in drizzle studio demo I managed to do something like that:
13 replies
SolidStart layout shifts using createAsync
I'm going out of scope but shouldn't the loading be instant since I use
cache
?
I have added a Bun.sleep here just to see the loading suspense, but shouldn't it just skip thins function alltogether ?31 replies