import type { UseFetchOptions } from "nuxt/app"; export const useHttp = ( url: string | (() => string), options: UseFetchOptions = {} ) => { return useFetch(url, { ...options, $fetch: useNuxtApp().$http }); };