diff --git a/modules/tauri/runtime/nitro.client.ts b/modules/tauri/runtime/nitro.client.ts index c9dc025e..affedc06 100644 --- a/modules/tauri/runtime/nitro.client.ts +++ b/modules/tauri/runtime/nitro.client.ts @@ -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 }, }) diff --git a/nuxt.config.ts b/nuxt.config.ts index 754ef5f6..6ae05b93 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -9,6 +9,7 @@ const { resolve } = createResolver(import.meta.url) export default defineNuxtConfig({ typescript: { + hoist: ['ofetch'], tsConfig: { exclude: ['../service-worker'], vueCompilerOptions: {