- Changed NEXT_PUBLIC_API_URL in .env.development and .env.production to point to the new development and production server URLs, respectively. - Updated baseUrl in config.development.ts and config.production.ts to reflect the new server addresses for consistent environment configuration.
15 lines
477 B
TypeScript
15 lines
477 B
TypeScript
import getConfigs from '@/config/config.common'
|
|
|
|
// 환경마다 달라져야 할 변수, 값들을 정의합니다. (여기는 development 환경에 맞는 값을 지정합니다.)
|
|
// const baseUrl = 'http://172.16.56.60:3000'
|
|
const baseUrl = 'https://dev.hanasysfield.jp'
|
|
const mode = 'development'
|
|
|
|
// 환경마다 달라져야 할 값들을 getConfig 함수에 전달합니다.
|
|
const configDevelopment = getConfigs({
|
|
baseUrl,
|
|
mode,
|
|
})
|
|
|
|
export default configDevelopment
|