/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: false, poweredByHeader: false, typescript: { ignoreBuildErrors: true, }, eslint: { ignoreDuringBuilds: true, }, async headers() { return [ { source: '/(.*)', headers: [ { key: 'X-Powered-By', value: 'God Agent OS v11 - Pyae Sone' }, { key: 'Access-Control-Allow-Origin', value: '*' }, ], }, ] }, } module.exports = nextConfig