Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save randercarlos/470ef5eaae9d1360cdf1a7c49eb38c94 to your computer and use it in GitHub Desktop.

Select an option

Save randercarlos/470ef5eaae9d1360cdf1a7c49eb38c94 to your computer and use it in GitHub Desktop.
Custom UseFetch from Nuxt
import type { UseFetchOptions } from 'nuxt/app'
export function useCustomFetch<T>(
url: string | (() => string),
options: UseFetchOptions<T> = {},
) {
return useFetch(url, {
...options,
$fetch: useNuxtApp().$customFetch,
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment