14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "8mb",
|
|
},
|
|
},
|
|
turbopack: {},
|
|
};
|
|
|
|
export default nextConfig;
|