16 lines
235 B
TypeScript
16 lines
235 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
};
|
|
|
|
module.exports = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '50mb',
|
|
},
|
|
},
|
|
}
|
|
|
|
export default nextConfig;
|