ファイル
btrc-hub/frontend/src/config.sample.ts
T
2025-07-13 02:46:13 +09:00

11 行
316 B
TypeScript

// frontend/src/config.ts
const ENV: string = 'development'
const config = {
API_BASE_URL: ENV === 'production' ? 'https://hub.nizika.monster/api' : 'http://localhost:3002',
SITE_TITLE: 'ぼざクリ タグ広場'
}
export const API_BASE_URL = config.API_BASE_URL
export const SITE_TITLE = config.SITE_TITLE