Silas
Silas
Tacking this on here because it may be related. After months of no issues, I started getting similar `Colon is expected` errors on build when I began using CSS variables...
Just throwing my case in here. I have a free web app that helps people manage their time. It shows the time you’ll be finished with your day at the...
I'm also using `vite-imagetools` and came across this same problem. The best I could come up with is appending `&imagetools` to the end of my query for each image. Not...
Another solution to this would be for `supabase.auth.session()` and `supabase.auth.user()` to return Promises. It's been a massive headache trying to block and check the authentication for my application before rendering...
The reason **onAuthStateChange()** doesn't work for some cases is because it can't block the rendering of the page when certain frameworks/SPA libraries use async functions to determine page loading and...
So, from what it sounds like, the main issue here might be lack of documentation more than lack of function. At this time, for `supabase.auth.user()`, these are the only two...
**UPDATE:** My issue with css files is probably different than this issue. I realized instantclick.js doesn't reload anything inside the tag, so if there is a new css file in...
I'm also getting this constantly on build—locally or to Vercel. I'm using SvelteKit. Everything works great in development, rebuilding doesn't fix it.
Using `virtual:icons` instead of `~icons` to reference icons has seemed to fix it for me.
### Update I was able to get this to work by replacing **`~icons/`** with **`virtual:icons/`** when referencing an icon ・・・・・・ I'm experiencing this *only* in production with SvelteKit/Vite deploying to...