13 lines
536 B
TypeScript
13 lines
536 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Not using `output: "standalone"`: its dependency tracing only follows
|
|
// what the server bundle actually imports, so it wouldn't pick up the
|
|
// Prisma CLI (invoked as a separate process to run migrations on
|
|
// container start, not imported by app code). The Dockerfile instead
|
|
// copies the full `node_modules` into the runtime image, which is a
|
|
// simpler and more reliable trade for a single self-hosted instance.
|
|
};
|
|
|
|
export default nextConfig;
|