16 lines
348 B
TypeScript
16 lines
348 B
TypeScript
|
|
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;
|