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

9 lines
175 B
TypeScript

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