Patrick
Patrick
I would recommend something like this: ```ts // supabase.ts import { createServerClient, type CookieOptions } from "@supabase/ssr"; import type { Context } from "hono"; import { getCookie, setCookie } from...
> [@ptts](https://github.com/ptts?rgh-link-date=2024-11-19T06%3A08%3A59.000Z) But would this work for a Hono.js backend being deployed on Cloudflare Workers with client side being a Next.js app on Vercel? As far as I remember, cookies...
I also currently can't provide a lot of information but we just had to hotfix rollback next-intl from 3.14.0 to 3.13.0 as a big part of our app (NextJS, App...
I can't provide a full reproducable example but maybe an excerpt of the code might help to show what we're using: ``` import { notFound, redirect, RedirectType } from "next/navigation";...
@amannn We figured it out: We called `useLocale` in serverside code which - for some reason - used to work fine before 3.14 but now throws an error. Now we're...
You could also add `cloudflare-pages` to the list of supported presets here: 🙂 https://github.com/t3-oss/t3-env/blob/main/docs/src/app/docs/customization/page.mdx?plain=1#L97
**Version:** `drizzle-orm 0.42.0` We're also having a type problem when conditionally including a related entity: ```ts const pet = await db.query.pets.findFirst({ with: { ...(shouldIncludeOwner && { owner: true }), },...
I am talking about a more specific use-case. Generally, Zod 4 search param validation works fine, both via `zodValidator` and also if just passed in without an adapter (through standard...
**Update 2**: My bad, I guess it takes a bit longer as it's still in Canary and should ship in zod 4.1.0 **Update**: Nice! With the newest update from zod,...
> Just to clarify, the fix is already in `canary` and should ship with zod 4.1.0 (or 4.0.6). Have you installed canary version of zod [@ptts](https://github.com/ptts), or is there some...