diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..c5eddf4 --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,9 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + output: "standalone", + experimental: { + serverComponentsExternalPackages: ["pg", "ioredis"], + }, +}; + +export default nextConfig;