6af863199f
- fito-nextjs 기반으로 재구성 - 로그인: MOMO 로고 + 모모유통 + 유통관리 ERP, 하단에 본사/지사 주소 표시 - 사이드바 상단: MOMO 아이콘 + 모모유통 + 유통관리 ERP - 파비콘: /src/app/icon.svg (MOMO 그린 배지) - layout.tsx title: 모모유통 | 유통관리 ERP - DB: 183.99.177.40:5432/distribution (fito 스키마 import 완료) - Traefik: Host(momo.junggomoa.com), 컨테이너 momo-erp
12 lines
355 B
TypeScript
12 lines
355 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "path";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Docker 배포용 — .next/standalone 번들 생성 (이미지 경량화)
|
|
output: "standalone",
|
|
// 프로젝트 루트 강제 고정 (상위 디렉토리 오탐 방지)
|
|
outputFileTracingRoot: path.join(__dirname),
|
|
};
|
|
|
|
export default nextConfig;
|