124_webcalibre2/next.config.ts

13 lines
282 B
TypeScript
Raw Permalink Normal View History

2026-01-04 05:05:48 +00:00
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',
},
},
2026-01-04 05:05:48 +00:00
};
export default nextConfig;