import type { NextConfig } from "next"; import path from "path"; const nextConfig: NextConfig = { output: "standalone", transpilePackages: ["@tasks/database", "@tasks/shared"], outputFileTracingRoot: path.join(__dirname, "../.."), experimental: { serverActions: { bodySizeLimit: "2mb", }, }, }; export default nextConfig;