11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "node:path";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
outputFileTracingRoot: path.join(import.meta.dirname, "../"),
|
|
serverExternalPackages: ["postgres", "drizzle-orm", "drizzle-kit"],
|
|
};
|
|
|
|
export default nextConfig;
|