feat(app): migrate auth pages to Vue SPA (stage 2)

This commit is contained in:
2025-12-13 23:30:51 +08:00
parent 34f44eed3e
commit 324e0d614a
35 changed files with 1175 additions and 85 deletions

View File

@@ -0,0 +1,8 @@
import axios from 'axios'
export const publicApi = axios.create({
baseURL: '/api',
timeout: 30_000,
withCredentials: true,
})