summaryrefslogtreecommitdiff
path: root/next.config.ts
diff options
context:
space:
mode:
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',
},