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.
|
- // frontend/src/config.ts
- const ENV = '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
|