7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
|
|
import type { CreateClientConfig } from './client/client.gen';
|
||
|
|
|
||
|
|
export const createClientConfig: CreateClientConfig = (config) => ({
|
||
|
|
...config,
|
||
|
|
baseUrl: process.env.PRIVATE_API_BASE_URL,
|
||
|
|
});
|