Compare commits

..

No commits in common. "88b2dea627edb5184a73d4788e819570d99d9913" and "21af6c5c17022a87dc197e97b6545b41f09236cc" have entirely different histories.

3 changed files with 10 additions and 14 deletions

View File

@ -45,7 +45,6 @@ services:
environment: environment:
NODE_ENV: production NODE_ENV: production
NEXT_PUBLIC_API_URL: https://api.vexplor.com/api NEXT_PUBLIC_API_URL: https://api.vexplor.com/api
SERVER_API_URL: "http://backend:3001"
NEXT_TELEMETRY_DISABLED: "1" NEXT_TELEMETRY_DISABLED: "1"
PORT: "3000" PORT: "3000"
HOSTNAME: 0.0.0.0 HOSTNAME: 0.0.0.0

View File

@ -20,9 +20,6 @@ services:
- CORS_CREDENTIALS=true - CORS_CREDENTIALS=true
- LOG_LEVEL=info - LOG_LEVEL=info
- ENCRYPTION_KEY=ilshin-plm-mail-encryption-key-32characters-2024-secure - ENCRYPTION_KEY=ilshin-plm-mail-encryption-key-32characters-2024-secure
- KMA_API_KEY=ogdXr2e9T4iHV69nvV-IwA
- ITS_API_KEY=d6b9befec3114d648284674b8fddcc32
- EXPRESSWAY_API_KEY=${EXPRESSWAY_API_KEY:-}
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"] test: ["CMD", "curl", "-f", "http://localhost:8080/health"]

View File

@ -26,16 +26,16 @@ export function RegistryProvider({ children }: RegistryProviderProps) {
}, []); }, []);
// 초기화 중 로딩 표시 (선택사항) // 초기화 중 로딩 표시 (선택사항)
// if (!isInitialized) { if (!isInitialized) {
// return ( return (
// <div className="flex min-h-screen items-center justify-center"> <div className="flex min-h-screen items-center justify-center">
// <div className="flex flex-col items-center space-y-4"> <div className="flex flex-col items-center space-y-4">
// <div className="border-primary h-12 w-12 animate-spin rounded-full border-b-2"></div> <div className="border-primary h-12 w-12 animate-spin rounded-full border-b-2"></div>
// <p className="text-muted-foreground text-sm">시스템 초기화 중...</p> <p className="text-muted-foreground text-sm"> ...</p>
// </div> </div>
// </div> </div>
// ); );
// } }
return <>{children}</>; return <>{children}</>;
} }