Skip to main content
0 votes
0 answers
37 views

I am trying to create an app using the T3 stack. I am following the instructions in the T3 documentation which start by telling us to use the command npm create t3-app@latest. After doing that, we get ...
2 votes
0 answers
602 views

I am trying to deploy my create-t3 application to Vercel, the build is successful but when I go to the website the server has a 500 internal server error and the logs throw an error like this: ⨯ Error:...
1 vote
0 answers
218 views

When calling the auth.UserChecker mutation from my React frontend, the server responds with a 500 error. The mutation is intended to check user credentials during login. Also, the register page is the ...
2 votes
0 answers
293 views

I just want to connect my turso db into a t3 stack app with prisma I was following all the docs process https://www.prisma.io/docs/orm/overview/databases/turso But im stuck in the latest part when i ...
10 votes
0 answers
4k views

I am learning T3 stack with App router. But I ran into a problem with using tRPC. 90% tutorial in the Internet shows how to combine tRPC with next js using hooks, for example: const {data: posts, ...
1 vote
0 answers
805 views

I began learning the T3 stack following this tutorial: https://www.youtube.com/watch?v=YkOSUVzOAA4&t=1836s I have middleware thats supposed to send users to a sign in page when they're logged out. ...
0 votes
0 answers
79 views

I'am using next.js with the T3 stack. The error in the provided code is related to the type incompatibility when updating the solved state using the setSolved function. TypeScript is raising a type ...
3 votes
0 answers
2k views

Im trying to mock the api to create my first test using the t3 stack. When I run the test it always tells me that api.transactions is undefined. I have a feeling that it is not configured properly to ...
1 vote
0 answers
248 views

So I have a T3 stack app in which /src/server/api/routers/RouterX.ts contains some info in an array that I have to maintain, but what happens is, every time there is a new page loaded, the server and ...
0 votes
0 answers
480 views

Can I build a custom object using a relation, and the properties that it references? For example, if I have two models like this, where User is populated during authentication: model User { id ...
2 votes
0 answers
3k views

We've been using pgbouncer for couple days now and found out that the bouncer is super slow. I'd like to have your feedback on what is wrong with my bouncer configuration: Pressures table is 600k rows ...
0 votes
0 answers
894 views

I am trying to connect to a Weblogic server, using T3 protocol, in order to read and write from specific Weblogic queues. I have built a solution that does this and works correctly on a local ...