FE_Dev / api-client /utils /rpc-client.ts
GitHub Actions
Deploy from GitHub Actions [dev] - 2025-10-31 07:28:50
68f7925
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;