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