File size: 311 Bytes
68f7925
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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;