/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, // Support VibeCoder proxy paths (e.g., /projekte/[id]/preview/) assetPrefix: process.env.ASSET_PREFIX || undefined, basePath: process.env.BASE_PATH || undefined, experimental: { serverActions: { bodySizeLimit: '2mb', }, }, images: { remotePatterns: [ { protocol: 'https', hostname: '**.supabase.co', }, ], }, }; module.exports = nextConfig;