Is it possible to infer a const type from a Set?
const foo = new Set([1,2,3])
how can I infer the type of foo as const?
For example, const bar = [...foo.keys()] as const is of type number[] instead of type 1 | 2 | 3....Where to start for frontend
Next app deployment issue on vercel

learning t3 stack, specifically fetching data from API
Next.js - ReactQuery data is being refetched everytime route changes.
Is there a way to add only a specific addon to an already existing ct3a app?
rcTable Rerenders useEffect

Case sensitive search in MySQL with Prisma
mode property where you could set sensitivity in something like Postgres. Is there any way you can do case-sensitive search?
Thanks!...Learning Choices
Using tRPC with a request to an external API
fetch to the resolve or am I not thinking about this correctly?How to prevent prerender error for static page that fetches data from serverless API
/api/hello from a t3 app. Running next dev works just fine, but when running vercel build, I get this error:
```
Error occurred prerendering page "/en". Read more: https://nextjs.org/docs/messages/prerender-error
TypeError: fetch failed
at Object.processResponse (node:internal/deps/undici/undici:5536:34)...Optimize Images (T3 Stack + S3 + CloudFront)
trpc v10 Invalidating all queries from given router
Prisma Update many WHERE with LIMIT?
UPDATE"verificaiton SET userID = ${userId} WHERE verificaitonSessionId IS NULL LIMIT ${input.limit}
i cant believe that prisma does not allow this? Im i going mad? https://github.com/prisma/prisma/issues/8359v....env variables failed to load

nextauth session props problem
How to Pass (Dynamic) Variables in trpc.useQuery()?
const findSubscriber = trpc.useQuery(["subscriber.find", { email: "elsa@prisma.io" }]);
But what if I want the user to type in an email & then see if that email exists with subscriber.find ? So I want to execute my query conditionally, that is, only in an onClick, as I don't have the user input before that....how do you add `prettier-plugin-tailwindcss` to an existing ct3a app?
pnpm add -D prettier prettier-plugin-tailwindcss). docs say plugins aren't automatically used from node_modules with yarn or pnpm, so need to make a prettier.config.js, but eslint doesn't like that:
Parsing error: "parserOptions.project" has been set for @typescript-eslint/parser. The file does not match your project config: prettier.config.js. The file must be included in at least one of the projects provided....

_app