Add site favicon and enhance metadata for better SEO and social sharing: - Added app/icon.svg from existing logo for browser tab icon - Enhanced metadata with Open Graph and Twitter card support - Created manifest.json for PWA support - Added metadataBase for proper social image resolution - Updated .env.example with NEXT_PUBLIC_APP_URL The Xpeditis logo (blue background with cyan X) now appears in: - Browser tabs (favicon) - Bookmarks - Mobile home screen (PWA) - Social media shares (Open Graph) Configuration for different environments: - Dev: NEXT_PUBLIC_APP_URL=http://localhost:3000 - Preprod: NEXT_PUBLIC_APP_URL=https://app.preprod.xpeditis.com - Prod: NEXT_PUBLIC_APP_URL=https://xpeditis.com 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
25 lines
575 B
Plaintext
25 lines
575 B
Plaintext
# API Configuration
|
|
NEXT_PUBLIC_API_URL=http://localhost:4000
|
|
NEXT_PUBLIC_API_PREFIX=api/v1
|
|
|
|
# App Configuration
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
|
|
# Authentication
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
NEXTAUTH_SECRET=your-nextauth-secret-change-this-in-production
|
|
|
|
# OAuth2 - Google
|
|
GOOGLE_CLIENT_ID=your-google-client-id
|
|
GOOGLE_CLIENT_SECRET=your-google-client-secret
|
|
|
|
# OAuth2 - Microsoft
|
|
MICROSOFT_CLIENT_ID=your-microsoft-client-id
|
|
MICROSOFT_CLIENT_SECRET=your-microsoft-client-secret
|
|
|
|
# Environment
|
|
NODE_ENV=development
|
|
|
|
# Analytics (Optional)
|
|
NEXT_PUBLIC_GA_ID=
|