124_webcalibre2/next.config.ts

13 lines
No EOL
282 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
experimental: {
serverActions: {
// Set this higher than your MAX_FILE_SIZE in upload-view.tsx
bodySizeLimit: '150mb',
},
},
};
export default nextConfig;