perf(请求): 增加请求超时时间至15000毫秒

This commit is contained in:
alger
2025-05-18 12:43:09 +08:00
parent e9fe9000f6
commit f68f49973a
+1 -1
View File
@@ -17,7 +17,7 @@ const baseURL = window.electron
const request = axios.create({ const request = axios.create({
baseURL, baseURL,
timeout: 5000, timeout: 15000,
withCredentials: true withCredentials: true
}); });