fix: 그리드 버튼 수정, 환경변수 수정

- 그리드 버튼 클릭 후 팝오버 사라지게 함
- 환경변수에 port 기본값 삭제
This commit is contained in:
shinmj
2021-12-29 14:13:16 +09:00
parent 9123b92e92
commit bffcc1b31b
3 changed files with 8 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
const { i18n } = require('./next-i18next.config')
const { PHASE_DEVELOPMENT_SERVER } = require('next/constants')
const port = process.env.PORT || 3000
const port = process.env.PORT
const serverApiUrl = process.env.SERVER_API_URL || 'http://localhost:8000'
const siteId = process.env.SITE_ID || '3'
const mode = siteId === '2' ? 'lg' : siteId === '3' ? 'sm' : 'sm'