11# Production Environment Configuration Example
22# Copy this file to .env.production and update with your actual values
33
4- # API Base URLs - Update these to your actual backend URLs
5- REACT_APP_BASE_URL=https://your-domain.com/panel
6- REACT_APP_WALLET_BASE_URL=https://your-domain.com/wallet
7-
8- # Asset serving configuration
9- REACT_APP_ASSETS_BUCKET=https://your-domain.com
10-
11- # Demo mode (set to true for demo, false for production)
4+ # Demo mode (set to false for production)
125REACT_APP_DEMO_MODE=false
136
14- # Router basename - where your React app will be served from
15- # Use empty string for root path, or /admin, /dashboard, etc.
16- REACT_APP_BASENAME=/front
7+ # Router configuration for /panel/ path (served through nginx)
8+ REACT_APP_BASENAME=/panel
9+ PUBLIC_URL=/panel
10+
11+ # Asset serving configuration (optional - adjust for your domain)
12+ # REACT_APP_ASSETS_BUCKET=https://your-domain.com
1713
18- # Public URL for static assets - should match REACT_APP_BASENAME
19- PUBLIC_URL=/front
14+ # Nostr relay configuration for profile fetching
15+ # REACT_APP_OWN_RELAY_URL= # ✅ Auto-detected from current domain
16+ # REACT_APP_NOSTR_RELAY_URLS=wss://your-relay1.com,wss://your-relay2.com
2017
21- # More info https://create-react-app.dev/docs/advanced-configuration
18+ # Development optimizations
2219ESLINT_NO_DEV_ERRORS=true
2320TSC_COMPILE_ON_ERROR=true
0 commit comments