Credentials Auth with tRPC
I'm rebuilding a client's site with the T3 stack. We originally had to do away with NextAuth because we figured its
We still need to authenticate users based on username/password credentials, and I'm not sure how tRPC handles that within its
CredentialsProvider wasn't going to work for us. Then we moved to Strapi and after using Strapi I decided I'm just gonna do it myself. <Insert Thanos GIF>We still need to authenticate users based on username/password credentials, and I'm not sure how tRPC handles that within its
ctx since according to NextAuth docs (https://next-auth.js.org/providers/credentials) it doesn't store session data in the DB.Overview
