Anyone using @vite_js with @vercel dev?
If I just use `npx vite` it's really fast.
But when I use `vercel dev` with `"dev": "vite --port $PORT" `in my package.json it's really slow cause it reloads all my files on the network tab every time.
Any ideas..? π
@mark_volkmann @svelte@opensas@rootsikal Since I have to use .set() in .ts files anyway, it's easier to search for all places where a store is being set if I can just look for store.set( or store.update( .. is what I was thinking at least.
@ahmedfmire good idea! how do you keep them in sync with each other? if I add a new table to one of them, do I need to go add that table to the other two manually?
On @supabase is it possible to send user a 6 digit code instead of a magic link?
I'm thinking maybe there's a way to convert the {{ .ConfirmationURL }} into a code in the template..? But we'd need access to the ConfirmationURL in the client to store it in the DB as well.. π€
Is there a way to tell if my web page is coming from a magic link redirect? Since it takes a moment for @supabase to set the user session in localStorage, there's no way to tell on page load if there's a user or not.
@silentworks@supabase ah yeah i was trying that but the query params weren't showing up in the magic link for some reason =/ (I had a slash at the end of the url)
But actually I found that the redirect link attaches some stuff in the url like localhost:3000/#access_token=...&refresh_token...