16 lines
555 B
Plaintext
16 lines
555 B
Plaintext
// Supabase 配置
|
|
// 开发环境 - 本地 Supabase
|
|
// export const SUPA_URL: string = 'http://192.168.0.150:8080'
|
|
// export const SUPA_KEY: string = 'your-anon-key'
|
|
|
|
// 生产环境 - Supabase 云服务
|
|
export const SUPA_URL: string = 'https://ak3.oulog.com'
|
|
export const SUPA_KEY: string = 'your-anon-key'
|
|
|
|
// WebSocket 实时连接
|
|
export const WS_URL: string = 'wss://ak3.oulog.com/realtime/v1/websocket'
|
|
|
|
// 路由配置
|
|
export const HOME_REDIRECT: string = '/pages/mall/consumer/index'
|
|
export const TABORPAGE: string = '/pages/mall/consumer/index'
|