God Agent OS
feat(v11): Complete God Mode upgrade - Theme, Language, Computer Use, Real Backend
bbcfe72 | /** @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 | |