| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| // Disable image optimization for deployment | |
| images: { | |
| unoptimized: true | |
| }, | |
| // Enable standalone output for Docker | |
| output: 'standalone', | |
| // Disable ESLint during builds for deployment | |
| eslint: { | |
| ignoreDuringBuilds: true, | |
| }, | |
| // Disable TypeScript type checking during builds for deployment | |
| typescript: { | |
| ignoreBuildErrors: true, | |
| }, | |
| // Experimental features | |
| experimental: { | |
| serverActions: { | |
| allowedOrigins: ['*'] | |
| } | |
| } | |
| } | |
| module.exports = nextConfig | |