11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ["@electric-sql/pglite"],
|
|
outputFileTracingIncludes: {
|
|
"**/*": ["./drizzle/**/*"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|