Browse Source

Fix: Increase timeout 30000ms

iaun 3 tháng trước cách đây
mục cha
commit
f152290d12
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      frontend/src/services/api.js

+ 1 - 1
frontend/src/services/api.js

@@ -2,7 +2,7 @@ import axios from 'axios'
 
 const api = axios.create({
   baseURL: '/api',
-  timeout: 10000,
+  timeout: 30000,
   headers: {
     'Content-Type': 'application/json'
   }