앱 브릿지 토큰 요청 및 로그아웃 기능 추가

- requestToken 함수 구현 및 토큰 저장 로직 추가
- 토큰 null 체크 및 자동 로그아웃 처리
- 환경 변수 및 빌드 설정 업데이트

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-09-17 16:32:30 +09:00
parent 56ef85e3f3
commit 90ed6b8ac9
8 changed files with 68 additions and 13 deletions

View File

@@ -30,7 +30,7 @@ FROM httpd:2.4-alpine AS production
RUN apk add --no-cache bash
# Copy built application from builder stage
COPY --from=builder /app/dist /usr/local/apache2/htdocs/
COPY --from=builder /app/build /usr/local/apache2/htdocs/
# Copy Apache configuration
COPY docker/apache.conf /usr/local/apache2/conf/httpd.conf