11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
experimental: {
|
|
// Allow large video uploads (up to 500MB) through the proxy
|
|
proxyClientMaxBodySize: "500mb",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|