config: add Next.js configuration with standalone output and server actions

This commit is contained in:
Greg 2025-05-18 22:40:56 +02:00
parent 5525d69b5d
commit 36138478f8

View File

@ -7,6 +7,11 @@ const nextConfig = {
// domains: ['example.com'], // Add your image domains here if needed
},
serverActions: {
bodySizeLimit: '10mb', // Or your desired limit, e.g., '5mb', '20mb'
},
// Add any other configurations needed
reactStrictMode: true,
};