From 49cdcc28c02a5e5dded42975b02167991bcd5126 Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Thu, 13 Mar 2025 20:32:17 +0330 Subject: [PATCH] Remove timeout --- frontend/plugins/axios.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/plugins/axios.ts b/frontend/plugins/axios.ts index 6218f29..76cb277 100644 --- a/frontend/plugins/axios.ts +++ b/frontend/plugins/axios.ts @@ -8,8 +8,8 @@ export default defineNuxtPlugin(() => { const { token, logout } = useAuth(); const axios = axiosOriginal.create({ - timeout: 30000, - timeoutErrorMessage: "فرآیند بیش از حد انتظار طول کشید", + // timeout: 30000, + // timeoutErrorMessage: "فرآیند بیش از حد انتظار طول کشید", baseURL: config.public.API_BASE_URL, });