DrizzyDrake
DrizzyDrake
Explore posts from servers
TTCTheo's Typesafe Cult
Created by DrizzyDrake on 8/11/2024 in #questions
trpc prefetch fails when building app
export const dynamic = "force-dynamic";
export const dynamic = "force-dynamic";
5 replies
TTCTheo's Typesafe Cult
Created by DrizzyDrake on 8/11/2024 in #questions
trpc prefetch fails when building app
5 replies
TTCTheo's Typesafe Cult
Created by DrizzyDrake on 8/11/2024 in #questions
trpc prefetch fails when building app
I found this solution here:
5 replies
TtRPC
Created by DrizzyDrake on 7/6/2024 in #❓-help
Having great difficulty using Streaming
Uhh, I think bun update did the trick, since I didn't change anything and everything worked. When people say if it ain't broke, don't fix it, this is what they mean.
3 replies
TTCTheo's Typesafe Cult
Created by DrizzyDrake on 3/24/2024 in #questions
Module not found: Can't resolve '@/components/site/footer' on Vercel
Solved Problem: GitHub did not rename one of my files, and left it capitalized instead of changing it to be lower case and screwed over my deployments.
4 replies
TTCTheo's Typesafe Cult
Created by DrizzyDrake on 3/23/2024 in #questions
Get a list of all files in UploadThing
Nevermind it was in https://docs.uploadthing.com/api-reference/ut-api#listfiles
import { utapi } from "~/server/uploadthing.ts";
const files = await utapi.listFiles();
console.log(files);
import { utapi } from "~/server/uploadthing.ts";
const files = await utapi.listFiles();
console.log(files);
3 replies