diff options
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) |
