11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
// Keep this above onboarding's 15MB app-level limit so route validation can run.
|
|
proxyClientMaxBodySize: "20mb",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|