import { PUBLIC_BASE_URL } from '$env/static/public'; import createClient from 'openapi-fetch'; import type { paths } from './api/schema.d.ts'; const client = createClient({ // TODO: Can we make this relative? baseUrl: PUBLIC_BASE_URL + '/api/v1' }); export { client };