Jacob
Explore posts from serversDefault headers not setting in nextjs rpc requests
Sorry for the really late response, the issue ending up being that in dev we are using http for transit where the cookies needed a secure connection to send across so both front end and api had to be run using https to send cookies across in development
19 replies
TTCTheo's Typesafe Cult
•Created by Jacob on 1/8/2025 in #questions
Getting build errors after upgrading to nextjs 15 and react 19
How would I go about that?
4 replies
TTCTheo's Typesafe Cult
•Created by Jacob on 12/29/2024 in #questions
Error building nextjs application on vercel
The issue seemed to be the following:
1. instrumentationHook was not set in nextjs config:
2. Incorrect sentry version
3. missing configs
6 replies
TTCTheo's Typesafe Cult
•Created by Jacob on 12/29/2024 in #questions
Error building nextjs application on vercel
Yes but no
6 replies
Default headers not setting in nextjs rpc requests
Assuming cookies are set very similar on web to mobile however not set to the api on web thinking cors or nextjs might be the issue as it doesn’t automatically attach headers to the request e.g cookies to external apis unless specified
19 replies
Default headers not setting in nextjs rpc requests
The clerk cookies are set via the clerk nextjs sdk and read by the @hono/clerk provider that wraps the clerk back end node sdk.
Here is the repo: https://github.com/jacobsamo/BuzzTrip/tree/improve-web
19 replies
Default headers not setting in nextjs rpc requests
Hey @ambergristle my setup is split into 3 different part 1 the api (hono) the web app (nextjs) and 3 the mobile app (expo/react native) currently in my web app using clerk for auth it won’t send across the cookies to the hono api however my mobile app sends them across fine, feeling like it is a cors issue but not sure how to fix it or it could be something else internally
19 replies
TTCTheo's Typesafe Cult
•Created by Crian. on 11/23/2024 in #questions
T3 Turbo Add Another App
if your have any more questions feel free to reach out
4 replies
TTCTheo's Typesafe Cult
•Created by Crian. on 11/23/2024 in #questions
T3 Turbo Add Another App
depends on what your adding, if we are adding a new app e.g web app, mobile app, etc:
1. First we need to go to /apps
2. create a new folder with the name of the app or use a setup tool e.g nextjs:
npx create-next-app@latest my-cool-app
(this will create a new app with the name my-cool-app it will also prompt you for a name when creating)
if your creating a new package:
1. go to /packages
2. create a new folder with the name of your package
3. run npm init -y
to create a new package.json
4. change the "name"
field in the package.json to the name of your package
then in here create your files to your hearts content4 replies
TTCTheo's Typesafe Cult
•Created by Jacob on 11/23/2024 in #questions
Shadcn components not working in nextjs 15 / react 19
I get the error from quite a few other shadcn components too, e.g Sidebar, Tooltip, Dialog, Drawer, etc
5 replies
TTCTheo's Typesafe Cult
•Created by Jacob on 11/23/2024 in #questions
Shadcn components not working in nextjs 15 / react 19
5 replies
TTCTheo's Typesafe Cult
•Created by Mugetsu on 9/3/2024 in #questions
Use Zod schema after parse & transform as a new schema
Note: When using the
.extend
method even if you remove the field on the clientSchema
it will still be there on the serverSchema
7 replies
TTCTheo's Typesafe Cult
•Created by Mugetsu on 9/3/2024 in #questions
Use Zod schema after parse & transform as a new schema
@Mugetsu
So what i would recommend is the following:
What you could also do, is lets say we have many client fields that aren't all needed on the server e.g:
Or instead of omitting the value you could use the
.pick
method:
7 replies
CDCloudflare Developers
•Created by Jacob on 9/9/2024 in #pages-help
Configuring a monorepo
Forgot to remove the
wrangler.toml
from the .gitignore and decided to opt into using the Root Directory
setting2 replies
CDCloudflare Developers
•Created by Jacob on 9/4/2024 in #d1-database
Hi, I am having troubble setting up
Figured out i was running the incorrect command was running
drizzle-kit migrate
rather than drizzle-kit generate
2 replies
TTCTheo's Typesafe Cult
•Created by Wezter on 8/31/2024 in #questions
Developing for multiple platforms.
If i were to be building a app with web + mobile i would be using something like react and react native with something like expo. i has seen teams use react native as a standised apporach to building web apps and just change the complier to use their custom components so for example a
View
might be a customised div element.
I can't find the video but this is something that Twitter (X) did for their webapp for mobile devices.
Expo has released support for building out web apps (https://docs.expo.dev/workflow/web/).
I think the biggest benift to building the web app with react and a frame work than using something like react-native is that is essentally the same logic just changed so you can share code, functions and much more between the platforms in a mono repo4 replies
TTCTheo's Typesafe Cult
•Created by Ankan on 9/1/2024 in #questions
need help in css
To build responsive websites i would recommend using an abstraction on css like tailwind to speed up the process and keep things nice and clean: https://tailwindcss.com/
If you want to use normal css than i would recommend doing something like this:
Alternatively you could use instead for element you know you want a certain size of the page to use percentages or calculated values based off the screen size e.g
width: 50%
or width: calc(100% - 30px);
3 replies
TTCTheo's Typesafe Cult
•Created by Mugetsu on 9/3/2024 in #questions
Use Zod schema after parse & transform as a new schema
So just going to add a clarifying question, you are using the schema:
for the client side form validation? and for example you would want the tRPC validation schema to look something like this?:
Is that correct or do i have it wrong?
7 replies