20260506 #816

Merged
ysCha merged 2 commits from dev into dev-deploy 2026-05-06 10:27:12 +09:00
3 changed files with 8 additions and 1 deletions
Showing only changes of commit 27ee53c350 - Show all commits

View File

@ -33,4 +33,5 @@ NEXT_PUBLIC_AWS_S3_BASE_URL="//files.hanasys.jp"
S3_PROFILE="dev"
#logging
NEXT_PUBLIC_ENABLE_LOGGING=false
# [debug auto-capture 2026-05-06] true 로 켜면 debugCapture 가 debug/*.json/*.log 로 자동 저장.
NEXT_PUBLIC_ENABLE_LOGGING=true

3
.gitignore vendored
View File

@ -24,6 +24,9 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# [debug auto-capture 2026-05-06] debugCapture 산출물 / dev 서버 stdout
debug/
dev.log
# local env files
.env*.local

View File

@ -4,6 +4,9 @@
"private": true,
"scripts": {
"dev": "env-cmd -f .env.localhost next dev",
"dev:log": "env-cmd -f .env.localhost next dev 2>&1 | tee dev.log",
"dev:local-api": "NEXT_PUBLIC_API_SERVER_PATH=http://localhost:8080 env-cmd --no-override -f .env.localhost next dev",
"dev:log:local-api": "NEXT_PUBLIC_API_SERVER_PATH=http://localhost:8080 env-cmd --no-override -f .env.localhost next dev 2>&1 | tee dev.log",
"local:dev": "env-cmd -f .env.local.dev next dev",
"build": "env-cmd -f .env.production next build",
"build:dev": "env-cmd -f .env.development next build",