8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ["pino", "pino-pretty"],
|
|
};
|
|
|
|
export default nextConfig;
|