main
Deploy Iddaai Frontend / build-and-deploy (push) Failing after 41s

This commit is contained in:
2026-05-04 18:01:01 +03:00
parent ab5864df2f
commit 0d194f7409
39 changed files with 1260 additions and 438 deletions
+13
View File
@@ -0,0 +1,13 @@
import { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
const baseUrl = process.env.NEXT_PUBLIC_APP_URL || 'https://iddaai.com';
return {
rules: {
userAgent: '*',
allow: '/',
disallow: ['/admin', '/*/dashboard', '/*/profile', '/*/coupon-history'],
},
sitemap: `${baseUrl}/sitemap.xml`,
};
}