import { hc } from "hono/client"; import { headers } from "next/headers"; import { getBaseUrl } from "./utils"; import type { AppRouter } from "@turbostarter/api"; export const { api } = hc(getBaseUrl(), { headers: async () => ({ ...Object.fromEntries((await headers()).entries()), "x-client-platform": "web-server", }), });