Files
2026-03-12 13:06:02 -07:00

9 lines
225 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Treat these packages as external to avoid bundling test files
serverExternalPackages: ["pino", "thread-stream"],
};
export default nextConfig;