blob: a20f6ca591652e2720959c154ae5598d0750d881 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
serverExternalPackages: ['pino', 'pino-pretty'],
reactStrictMode: false,
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
};
export default nextConfig;
|