Spaces:
Sleeping
Sleeping
File size: 495 Bytes
666aab6 11b240f bbcfe72 11b240f 666aab6 11b240f bbcfe72 11b240f 666aab6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | /** @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
|