caleb
TTCTheo's Typesafe Cult
•Created by Bored Student on 2/10/2025 in #questions
Nest.js CLI not working
pnpm vs pnpx is actually frustrating sometimes. i also have better luck using
pnpm dlx
instead of pnpx
7 replies
TTCTheo's Typesafe Cult
•Created by greypixel on 2/4/2025 in #questions
Images w/ next & vercel
I assume you're just using this image in one place in your site?
11 replies
TTCTheo's Typesafe Cult
•Created by greypixel on 2/4/2025 in #questions
Images w/ next & vercel
Hey man! I have a couple points
Next highly recommends not using the vanilla
<img>
element but the built-in <Image>
component they provide. This handles size optimization for different screen sizes and device speeds.
It is also a good practice to use a CDN for images, however particularly for larger and more images.
And yes, when you import and set an image the way you're doing it it grabs the image's data and puts it into the <img>
element.11 replies
TTCTheo's Typesafe Cult
•Created by caleb on 1/6/2025 in #questions
Jose DataError: HMAC key data must not be empty
I made sure
jwt
and secret
are both set. I even logged it to make sure7 replies
TTCTheo's Typesafe Cult
•Created by caleb on 1/6/2025 in #questions
Jose DataError: HMAC key data must not be empty
I verified that
jwt
and secret
in the providers code are not null or blank, which is what it looks like the error I'm getting would be caused by. I also confirmed they're the exact same from when the JWT is being signed.7 replies
TTCTheo's Typesafe Cult
•Created by caleb on 1/6/2025 in #questions
Jose DataError: HMAC key data must not be empty
I was using middleware to parse and validate the auth cookie but needed to use Prisma. I had issues adding Prisma to edge runtime so I instead moved it over to my
providers.tsx
file.
Discord isn't letting me post the code for some reason so here's a Hastebin link with the providers code: https://hastebin.com/share/enomewaken.javascript7 replies
TTCTheo's Typesafe Cult
•Created by caleb on 1/6/2025 in #questions
Jose DataError: HMAC key data must not be empty
Here's the
/src/app/api/sign/route.ts
file:
7 replies