import type { RpcType } from '@/app/api/rpc/[...route]/route'; import { hc } from 'hono/client'; // APIのベースURL(/api/rpcは含めない) const apiUrl = typeof window !== 'undefined' ? window.location.origin : 'http://localhost:3200'; export const rpcClient = hc(apiUrl).api.rpc;