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

This commit is contained in:
alger
2025-05-18 12:43:09 +08:00
parent e9fe9000f6
commit f68f49973a

View File

@@ -17,7 +17,7 @@ const baseURL = window.electron
const request = axios.create({
baseURL,
timeout: 5000,
timeout: 15000,
withCredentials: true
});