refactor(events): rename activities module to events + wire VITE_APP_NAME for per-deployment branding #94

Merged
padreug merged 9 commits from refactor/events-module-rename into dev 2026-06-09 18:18:27 +00:00
Showing only changes of commit f7eb633689 - Show all commits

fix(events): drop lowercase from PWA description brand name

The description template was `Discover ${APP_NAME.toLowerCase()} near
you`, producing "Discover bouge near you" / "Discover events near you"
— inconsistent with the title casing. The brand should match the
PWA name/short_name, not be lowercased.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Padreug 2026-06-09 19:40:24 +02:00

View file

@ -87,7 +87,7 @@ export default defineConfig(({ mode }) => ({
manifest: { manifest: {
name: APP_NAME, name: APP_NAME,
short_name: APP_NAME, short_name: APP_NAME,
description: `Discover ${APP_NAME.toLowerCase()} near you`, description: `Discover ${APP_NAME} near you`,
theme_color: '#1f2937', theme_color: '#1f2937',
background_color: '#ffffff', background_color: '#ffffff',
display: 'standalone', display: 'standalone',