···11+import { getConfig } from '../../../utils/config';
22+33+// TODO: this function could be moved so other plugins can reuse it
44+export const getClientBaseUrlKey = () => {
55+ const config = getConfig();
66+ return config.client.name === '@hey-api/client-axios' ? 'baseURL' : 'baseUrl';
77+};