import { ofetch } from 'ofetch'; import type { FetchOptions } from 'ofetch'; export function createOfetch(options: FetchOptions) { const request = ofetch.create(options); return request; } export default createOfetch;