gg
Deploy Iddaai Frontend / build-and-deploy (push) Failing after 34s

This commit is contained in:
2026-05-10 22:59:27 +03:00
parent 6dadc5f613
commit 5c8619b282
161 changed files with 6708 additions and 3435 deletions
+16 -16
View File
@@ -1,20 +1,20 @@
import { MetadataRoute } from 'next';
import { routing } from '@/i18n/routing';
import { MetadataRoute } from "next";
import { routing } from "@/i18n/routing";
const baseUrl = process.env.NEXT_PUBLIC_APP_URL || 'https://iddaai.com';
const baseUrl = process.env.NEXT_PUBLIC_APP_URL || "https://iddaai.com";
const staticPages = [
'',
'/home',
'/about',
'/analysis',
'/leagues',
'/matches',
'/teams',
'/predictions',
'/spor-toto',
'/coupon-builder',
'/h2h'
"",
"/home",
"/about",
"/analysis",
"/leagues",
"/matches",
"/teams",
"/predictions",
"/spor-toto",
"/coupon-builder",
"/h2h",
];
export default function sitemap(): MetadataRoute.Sitemap {
@@ -25,8 +25,8 @@ export default function sitemap(): MetadataRoute.Sitemap {
sitemapEntries.push({
url: `${baseUrl}/${locale}${page}`,
lastModified: new Date(),
changeFrequency: 'daily',
priority: page === '' || page === '/home' ? 1.0 : 0.8,
changeFrequency: "daily",
priority: page === "" || page === "/home" ? 1.0 : 0.8,
});
});
});