summaryrefslogtreecommitdiff
path: root/next.config.ts
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-07-01 10:37:54 +0000
committerjoonhoekim <26rote@gmail.com>2025-07-01 10:37:54 +0000
commitb9c3067ed9d07fcd8c16a2e1740c735acd8d6a82 (patch)
tree63a1e5cc51b7384a69d4e8e3279c9ceaf633ccb3 /next.config.ts
parent91d0d3f73002d033a2f7869f39c6b7c832c8588f (diff)
(김준회) node-cron 및 oracledb 라이브러리를 위한 next.config.ts 수정
Diffstat (limited to 'next.config.ts')
-rw-r--r--next.config.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/next.config.ts b/next.config.ts
index 88be10cb..f4561670 100644
--- a/next.config.ts
+++ b/next.config.ts
@@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
- serverExternalPackages: ['pino', 'pino-pretty'],
+ serverExternalPackages: ['pino', 'pino-pretty', 'node-cron', 'oracledb'],
reactStrictMode: false,
eslint: {
@@ -11,7 +11,7 @@ const nextConfig: NextConfig = {
ignoreBuildErrors: true,
},
webpack: (config) => {
- // turbo의 resolveAlias와 동일한 설정을 webpack에 적용
+ // [김준회] turbo의 resolveAlias와 동일한 설정을 webpack에 적용
config.resolve.alias = {
...config.resolve.alias,
'@azure/app-configuration': false,
@@ -28,7 +28,7 @@ const nextConfig: NextConfig = {
'tedious': false,
};
- // handlebars require.extensions 경고 무시
+ // [김준회] handlebars require.extensions 경고 무시
config.ignoreWarnings = [
...(config.ignoreWarnings || []),
{
@@ -41,7 +41,7 @@ const nextConfig: NextConfig = {
},
experimental: {
serverActions: {
- // [김준회 프로] DRM 복호화/암호화 백엔드로 보낼 때 사이즈 제한 변경(기본값: 1MB)
+ // [김준회] DRM 복호화/암호화 백엔드로 보낼 때 사이즈 제한 변경(기본값: 1MB)
// DDoS 공격을 방지하기 위해 기본값이 1MB로 설정되어 있음. 암호화된 파일 중 큰 파일(도면 등)도 1GB 이하로 가정하여 설정 (파일별로 서버액션 개별 호출)
bodySizeLimit: '1024mb',
},