13 lines
No EOL
282 B
TypeScript
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; |