fix: increase axios request timeout to 30 minutes
Some checks failed
sync2gitee / repo-sync (push) Has been cancelled

This commit is contained in:
CaptainB 2025-09-26 20:12:36 +08:00
parent b9dcfaff92
commit dea6702cca

View File

@ -11,7 +11,7 @@ import { ref, type WritableComputedRef } from 'vue'
const axiosConfig = {
baseURL: '/api',
withCredentials: false,
timeout: 600000,
timeout: 1800000,
headers: {}
}