OrJDev
OrJDev
(Sometimes) Log stucks on vercel when trying to build & deploy, no error or anything it just freezes. It does work when trying to build locally but it is pretty...
Currently enviroment variables that are not prefixed with `VITE_` will not be loaded, variables that are prefixed with `VITE_` will be exposed to the client (`import.meta.env`), what causing it so...
Closes # ## 🎯 Changes What changes are made in this PR? Is it a feature or a bug fix? ## ✅ Checklist - [ ] I have followed the...
For instance: ```ts withoutMdwr: f .limits("max 2 files of 1GB each") .fileTypes(["image"]) .middleware(async () => { return { testMetadata: "lol" }; }) .onUploadComplete(({ metadata, file }) => { console.log("uploaded with...
Instead of having to pass the generic everytime, you can now create type safed components using the `genereateReactComponents` method. ```ts import { genereateReactComponents } from "@uploadthing/react"; import { OurFileRouter }...
then you can use the `createSession` hook: ```ts import { createSession } from "@auth/solid-start/client" const session = createSession() const user = () => session()?.user ``` This will return a resource,...
> _NOTE_: > > - It's a good idea to open an issue first to discuss potential changes. > - Please make sure that you are _NOT_ opening a PR...
## ☕️ Reasoning I have an app that automatically sign in on the server side after signing up with credentials, trying to refetch the session (after calling the server function)...