12 questions with no answers
0
votes
0
answers
37
views
T3 Stack Page Routing Boilerplate does not work
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
⨯ Error: No native build was found for platform=linux arch=x64 runtime=node
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
Handling 500 Internal Server Error on tRPC Mutation in a Next.js T3 Stack Application
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
Can´t conect Turso With Prisma in a T3Stack
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
Next.js how to use tRPC with a server components correctly
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
Clerk authMiddleware throwing errors with publicRoutes when signed out
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
Typescript error with assigning array of objects TS Error (2345)
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
T3 stack: Mock TRPC api with jest
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
Backend refreshing every time there is a new page load T3 stack
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
Prisma schema - Build up a custom object from a relation
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
Pgbouncer super slow
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
Weblogic T3 connection from C# does not work on remote server
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 ...