refactor(events): rename activities module to events + wire VITE_APP_NAME for per-deployment branding #94
1 changed files with 1 additions and 1 deletions
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>
commit
f7eb633689
|
|
@ -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',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue