feat: add google auth integration

This commit is contained in:
Tim
2025-07-05 14:51:29 +08:00
parent e5ee4fcabb
commit ed12fb0fc9
6 changed files with 49 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ import { checkToken, clearToken } from './utils/auth'
export const API_DOMAIN = 'http://127.0.0.1'
export const API_PORT = 8081
export const API_BASE_URL = API_PORT ? `${API_DOMAIN}:${API_PORT}` : API_DOMAIN
export const GOOGLE_CLIENT_ID = process.env.VUE_APP_GOOGLE_CLIENT_ID || ''
export const toast = useToast()
const app = createApp(App)