From 7a5a2110c6b6706039996b3eaaf32cbdcda61b25 Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Wed, 1 Jul 2026 21:48:49 +0330 Subject: [PATCH] feat: add SEO configuration for production environment - Introduced SEO settings in appsettings.Production.json, including SiteUrl, SiteName, and DefaultDescription. - These additions enhance the application's search engine optimization capabilities, improving visibility and user engagement. --- src/FrontOffice.Main/appsettings.Production.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/FrontOffice.Main/appsettings.Production.json b/src/FrontOffice.Main/appsettings.Production.json index 6ef235b..7383386 100644 --- a/src/FrontOffice.Main/appsettings.Production.json +++ b/src/FrontOffice.Main/appsettings.Production.json @@ -14,5 +14,10 @@ "Microsoft.AspNetCore": "Warning" } }, + "Seo": { + "SiteUrl": "https://kbs2.ir", + "SiteName": "کارابازار سلامت", + "DefaultDescription": "باشگاه مشتریان کارابازار سلامت (KBS) — فروشگاه محصولات سلامت، پاداش شفاف، کیف پول و شبکه فروش." + }, "AllowedHosts": "*" }