jdkdev
jdkdev
Hey @dominikg , I just tried upgrading to Vite 3 with a svelte/routify project and am using: ``` "vite": "^3.1.8", "svelte": "^3.52.0", "svelte-hmr": "^0.15.0" "@sveltejs/vite-plugin-svelte": "^1.0.9", ``` and getting these...
I would love WAL mode as well. I am also using Prisma with Sqlite. +1!!
Same happen to me
Experiencing this as well. Currently on Svelte 4.
thanks @isaacHagoel ! So, originally my items were a computed list: ``` $: dropdownItems = realList.filter(mySelectedFilters) ``` I worked around it by making `dropdownItems` static. So first question, should it...
Hi, I was banging my head against this one as well, thinking it was me and lack of understanding. For me, the sql is generating a `NOT IN` and a...
Hey @SevInf, thanks for looking at this one! Do you know how you would include a 'and Not Null' to the permissions table in the prisma query below? ``` prisma.admin.findMany({...
It didn't seem to work, but it's also a very tricky way to think about the query. Maybe it would help if we start with a phrase and move to...
Okay, got it, thanks for all the help! Hopefully there can be a more elegant way to do this in the future. Inspiration for this issue was moving over from...
Maybe a start... from AI. ``` captainVersion: 4 services: navidrome: dockerfileLines: | FROM deluan/navidrome:latest USER 1000:1000 ENV ND_SCANSCHEDULE=1h ENV ND_LOGLEVEL=info ENV ND_SESSIONTIMEOUT=24h ENV ND_BASEURL= volumes: - $$CAPTAIN_APP_DIR_PATH/data:/data - $$CAPTAIN_APP_DIR_PATH/music:/music:ro containerHttpPort:...