20 lines
495 B
JavaScript
20 lines
495 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone', // Enable standalone output for optimized Docker builds
|
|
|
|
// Configure images if using them from external domains
|
|
images: {
|
|
// 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,
|
|
};
|
|
|
|
module.exports = nextConfig;
|