diff --git a/frontend/composables/useApi.ts b/frontend/composables/useApi.ts index d27e341..0201280 100644 --- a/frontend/composables/useApi.ts +++ b/frontend/composables/useApi.ts @@ -14,7 +14,7 @@ export type ApiClient = { export const useApi = (): ApiClient => { const config = useRuntimeConfig() const baseURL = config.public.apiBase ?? '/api' - const client = $fetch.create({ baseURL }) + const client = $fetch.create({ baseURL, retry: 0 }) const request = ( method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE',