Files
admin.fellies.app/next.config.ts
2025-06-26 21:21:52 +02:00

19 lines
291 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
module.exports = {
experimental: {
serverActions: {
bodySizeLimit: '100mb',
},
},
images: {
contentDispositionType: 'inline',
},
}
export default nextConfig;