ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
308 B

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