사주 풀이 고도화, NAS 배포 자동화

This commit is contained in:
2026-02-16 19:02:04 +09:00
parent d513c063cf
commit 7042373448
44 changed files with 6280 additions and 978 deletions

View File

@@ -1,7 +1,17 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
// NAS 배포 시 /saju 경로 사용
basePath: process.env.NEXT_PUBLIC_BASE_PATH || '',
assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH || '',
// Standalone 모드 (Docker 최적화)
output: 'standalone',
// 이미지 최적화 비활성화 (NAS 리소스 절약)
images: {
unoptimized: true,
},
};
export default nextConfig;