9 lines
241 B
JavaScript
9 lines
241 B
JavaScript
|
|
/** @type {import("next").NextConfig} */
|
||
|
|
console.log("Loading next.config.mjs with serverExternalPackages");
|
||
|
|
const nextConfig = {
|
||
|
|
output: "standalone",
|
||
|
|
serverExternalPackages: ["@prisma/client", "prisma"],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|