Add image upload function

This commit is contained in:
2025-06-26 21:21:52 +02:00
parent d608267a62
commit 0ccc01fb97
28 changed files with 4523 additions and 26 deletions

View File

@ -4,4 +4,15 @@ const nextConfig: NextConfig = {
/* config options here */
};
module.exports = {
experimental: {
serverActions: {
bodySizeLimit: '100mb',
},
},
images: {
contentDispositionType: 'inline',
},
}
export default nextConfig;