🤔 Error validating serverEnv
I just wired up next-auth, and while trying to access my new auth routes, i get an
invalid environment variables error.
oddly enough when I run printenv all of the variables seem to be populated.
Furthermore, when i log out the _serverEnv variable the validation seems to have passed. ...
Can we use Laravel with next?
I have a couple of questions
- Is it reasonable to use Laravel and Next together?
- if yes, should we run both of them together and interact with each other on the same server?
- If u have experience with next can please tell me if most of the time how is the backend is handled? (Next is full-stack so is it necessary to include the backend)...
What happened to the `enabled` option in useQuery?
I recently noticed that in create-t3-appp v10 I no longer have the boolean
enabled: !!_id, ...
enabled option available.
```jsx
const { data: prefs } = trpc.useQuery(['prefs.all'], {enabled: !!_id, ...

trpc giving me a hooks error?
when a button is pressed im getting a hooks error, i think because im using this function as a consequence of the button press. What is the correct way to call this?

how to see changes on .env file when .env is in .gitignore
I'd still like to see the changes to my .env periodically and was wondering if anyone has any advice around this
Can I save more user data with NextAuth than simply what my provider gives?
I want to save a username as well as the slug for the user's homepage, but can't figure out how to do this. Things break when I add these to my model, telling me
Invalid p.user.create() invocation in at the user creation invocationHow to update and upsert on particular columns on Prisma
On Prisma, I have a session model as follows
```
export type sessionsCreateInput = {
id?: bigint | number
hash: string...
When is concurrency an issue?
At what point/scale does concurrency become an issue in a web server?
I followed Primeagen's videos comparing Rust, Go, and Node and I take his point that Rust is more performant.
But at what scale does this matter? ...
Can we use tRPC api for any other platforms like Native languages?
Can we use tRPC api for any other platforms like Native languages? [I would like to use it for React Native]
Trpc giving a type error?
Im trying to get a trpc endpoint to update my db and i keep getting this error.

isSuccess correct value to check response in trpc?
Hello I am wondering if
isSuccess is the proper value which I should check once I call my mutation. Sometimes the function inside the isSuccess condition does not run, even if my mutation was successful.
Any idea how to improve that?
...Does NextJS static export really suck?
I've been hearing our fearless leader's recommendations for Astro JS for static sites, but Astro really seems more focused on blogs or pulling all the data at build time. If I'm building a simple static site for a S3 bucket & working with a rest API backend for CRUD, it seems like NextJS static export is fine?
Is that so or would Astro JS still be better to use than NextJS in this situation? Or would something else be better, like just using vite + React Router?
As some back story, its not my choice to be stuck with an S3 bucket / static site situation, I'm on a team of not web devs and they want to keep it "simple". I've been learning off-on for the last few years but am now diving all in on Next js and react so I'm excited to work on "something" web dev related that'll have a large impact 🙂...
getStaticProps runs multiple times!
Have no idea why this happens, few threads on github but no solution it seems.
When it runs, only one of the runs has the proper params, the rest are just undefined.
```ts
//[pid].tsx...
Railway React deploy error
has anyone got this error while trying to deploy react app to Railway?
FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory...
React hook form append custom key value
I have a form with an input type text, I can add text and click on enter to add the value to an array.
I want to save the data from the array to my form, but currently
tags is still undefined once I submit.
Any ideas what I may be missing?
...Is trpc returns promise?
I am pretty noobie, accept that. Is trpc returns promise? If it doesnt how do we handle errors?
Stripe - can I use tRPC for Stripe's webhook?
I'm building a Strip checkout and I am wondering if it is possible to use tRPC endpoint for handling Stripe's webook.
I have one more question regarding to Strapi, how can I verify what custom has paid for the product? (I am using T3 stack)...