- 순찰/점검 기능 개선 (zone-detail 페이지 추가) - 출근/근태 시스템 개선 (연차 조회, 근무현황) - 작업분석 대분류 그룹화 및 마이그레이션 스크립트 - 모바일 네비게이션 UI 추가 - NAS 배포 도구 및 문서 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
848 B
JavaScript
34 lines
848 B
JavaScript
// /js/config.js - Synology NAS 배포용
|
|
// 이 파일을 web-ui/js/config.js로 복사하세요
|
|
|
|
export const config = {
|
|
// API 관련 설정
|
|
api: {
|
|
// Synology NAS Docker 환경에서 사용하는 API 서버 포트
|
|
port: 3005,
|
|
// API의 기본 경로
|
|
path: '/api',
|
|
},
|
|
|
|
// 페이지 경로 설정
|
|
paths: {
|
|
loginPage: '/index.html',
|
|
dashboard: '/pages/dashboard.html',
|
|
defaultDashboard: '/pages/dashboard.html',
|
|
systemDashboard: '/pages/dashboard.html',
|
|
groupLeaderDashboard: '/pages/dashboard.html',
|
|
},
|
|
|
|
// 공용 컴포넌트 경로 설정
|
|
components: {
|
|
sidebar: '/components/sidebar.html',
|
|
'sidebar-nav': '/components/sidebar-nav.html',
|
|
navbar: '/components/navbar.html',
|
|
},
|
|
|
|
// 애플리케이션 관련 기타 설정
|
|
app: {
|
|
tokenRefreshInterval: 5 * 60 * 1000,
|
|
}
|
|
};
|