diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-05-28 00:30:18 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-05-28 00:30:18 +0000 |
| commit | 217e215e5487b53db7d64fe3d809c47289cd83ae (patch) | |
| tree | acead961488299e640f73365ccd4949f9a002ab3 /next.config.ts | |
| parent | 1d86653b12ec52cd6ba4b92a7b6a841506a190c5 (diff) | |
(김준회) 오라클 DB 연결을 위한 처리
Diffstat (limited to 'next.config.ts')
| -rw-r--r-- | next.config.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/next.config.ts b/next.config.ts index a87a0d79..9bc5785e 100644 --- a/next.config.ts +++ b/next.config.ts @@ -10,6 +10,26 @@ const nextConfig: NextConfig = { typescript: { ignoreBuildErrors: true, }, + webpack: (config) => { + // turbo의 resolveAlias와 동일한 설정을 webpack에 적용 + config.resolve.alias = { + ...config.resolve.alias, + '@azure/app-configuration': false, + '@azure/identity': false, + '@azure/keyvault-secrets': false, + 'oci-common': false, + 'oci-objectstorage': false, + 'oci-secrets': false, + 'better-sqlite3': false, + 'mysql': false, + 'mysql2': false, + 'pg-query-stream': false, + 'sqlite3': false, + 'tedious': false, + }; + + return config; + }, experimental: { serverActions: { // [김준회 프로] DRM 복호화/암호화 백엔드로 보낼 때 사이즈 제한 변경(기본값: 1MB) |
