From dfb349402459e8b46804a820817355bcc8a43fb6 Mon Sep 17 00:00:00 2001 From: Padreug Date: Tue, 9 Jun 2026 19:49:53 +0200 Subject: [PATCH] fix(events): use domain noun in description, not brand name PWA manifest description and HTML meta description were templating the brand name in ("Discover Bouge near you" / "Discover Sortir near you"), which conflates app-name with domain noun. The description should say what the app does, not repeat the brand. Switches to static "Discover events near you" so the description remains stable across deployments while the title and short_name still flex per VITE_APP_NAME. Co-Authored-By: Claude Opus 4.7 (1M context) --- events.html | 2 +- vite.events.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/events.html b/events.html index b0465ac..ef24349 100644 --- a/events.html +++ b/events.html @@ -11,7 +11,7 @@ %VITE_APP_NAME% - +
diff --git a/vite.events.config.ts b/vite.events.config.ts index 2e592ff..3cc992e 100644 --- a/vite.events.config.ts +++ b/vite.events.config.ts @@ -87,7 +87,7 @@ export default defineConfig(({ mode }) => ({ manifest: { name: APP_NAME, short_name: APP_NAME, - description: `Discover ${APP_NAME} near you`, + description: 'Discover events near you', theme_color: '#1f2937', background_color: '#ffffff', display: 'standalone',