FE_Test / api-client /utils /rpc-client.ts
GitHub Actions
Deploy from GitHub Actions [test] - 2025-10-31 10:18:25
5f2aab6
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<RpcType>(apiUrl).api.rpc;