mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 18:36:55 +08:00
11 lines
461 B
TypeScript
11 lines
461 B
TypeScript
const debugAPI = import.meta.env.VITE_DEBUG_API
|
|
const releseAPI = `${document.location.protocol}//api.vtsuru.live/`
|
|
export const BASE_API = process.env.NODE_ENV === 'development' ? debugAPI : releseAPI
|
|
export const FETCH_API = 'https://fetch.vtsuru.live/'
|
|
|
|
export const TURNSTILE_KEY = '0x4AAAAAAAETUSAKbds019h0'
|
|
|
|
export const USER_API_URL = `${BASE_API}user/`
|
|
export const ACCOUNT_API_URL = `${BASE_API}account/`
|
|
export const BILI_API_URL = `${BASE_API}bili/`
|