diff options
Diffstat (limited to 'next.config.ts')
| -rw-r--r-- | next.config.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/next.config.ts b/next.config.ts index b86ea42c..cd6fc0c3 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { serverExternalPackages: ['pino', 'pino-pretty'], + reactStrictMode: false, eslint: { ignoreDuringBuilds: true, @@ -13,6 +14,11 @@ const nextConfig: NextConfig = { serverActions: { bodySizeLimit: '5mb', }, + turbo: { + treeShaking: false, + minify: false, + unstablePersistentCaching: false, + } }, }; |
