Files
wfh/next.config.ts

8 lines
151 B
TypeScript
Raw Normal View History

2026-03-12 17:09:22 -05:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2026-03-12 19:18:01 -05:00
serverExternalPackages: ["@prisma/client"],
2026-03-12 17:09:22 -05:00
};
export default nextConfig;