11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ["pino", "pino-pretty"],
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|