2026-01-04 05:05:48 +00:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
|
/* config options here */
|
2026-01-09 06:58:44 +00:00
|
|
|
experimental: {
|
|
|
|
|
serverActions: {
|
|
|
|
|
// Set this higher than your MAX_FILE_SIZE in upload-view.tsx
|
|
|
|
|
bodySizeLimit: '150mb',
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-01-04 05:05:48 +00:00
|
|
|
};
|
|
|
|
|
|
2026-01-09 06:58:44 +00:00
|
|
|
export default nextConfig;
|