Files
wfh/next.config.ts
2026-03-12 19:59:59 -05:00

9 lines
185 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["@prisma/client", "prisma"],
};
export default nextConfig;