1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-05-18 22:47:16 +01:00

chore: add ofetch to typescript.hoist (#2693)

Co-authored-by: Daniel Roe <daniel@roe.dev>
This commit is contained in:
Joaquín Sánchez 2024-03-19 13:56:14 +01:00 committed by GitHub
parent bd4cd02b2b
commit 9251ec496b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,15 +55,10 @@ export default defineNuxtPlugin(async () => {
const localCall = createCall(toNodeListener(h3App) as any)
const localFetch = createLocalFetch(localCall, globalThis.fetch)
// eslint-disable-next-line ts/prefer-ts-expect-error
// @ts-ignore error TS2321: Excessive stack depth comparing types
globalThis.$fetch = createFetch({
// eslint-disable-next-line ts/prefer-ts-expect-error
// @ts-ignore slight differences in api
// @ts-expect-error slight differences in api
fetch: localFetch,
Headers,
// eslint-disable-next-line ts/prefer-ts-expect-error
// @ts-ignore error TS2321: Excessive stack depth comparing types
defaults: { baseURL: config.app.baseURL },
})