summaryrefslogtreecommitdiff
path: root/next.config.ts
blob: cd6fc0c3c99a5e11deadf76fd8aa9fa66ee330ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  serverExternalPackages: ['pino', 'pino-pretty'],
  
  reactStrictMode: false,
  eslint: {
    ignoreDuringBuilds: true,
  },
  typescript: {
    ignoreBuildErrors: true,
  },
  experimental: {
    serverActions: {
      bodySizeLimit: '5mb',
    },
    turbo: {
      treeShaking: false,
        minify: false,
        unstablePersistentCaching: false,        
    }
  },
};

export default nextConfig;