import type { NextConfig } from 'next'; const nextConfig: NextConfig = { output: 'standalone', reactStrictMode: true, poweredByHeader: false, compress: true, allowedDevOrigins: ['https://dev.quest.vorteq.local'], experimental: { serverActions: { bodySizeLimit: '10mb', }, }, // Logging configuration logging: { fetches: { fullUrl: true, }, }, }; export default nextConfig;