17 lines
291 B
TypeScript
17 lines
291 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
basePath: "/adv",
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '50mb',
|
|
},
|
|
proxyClientMaxBodySize: '50mb',
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|