1- # Minimum level of visible Logs
1+ # Environment similar to NODE_ENV.
2+ # Analytics and public resources are enabled only in "production"
3+ # How to use: set value to "production" to get fully functional application.
4+ NEXT_PUBLIC_ENV = development
5+ # NEXT_PUBLIC_ENV = preview
6+ # NEXT_PUBLIC_ENV = production
7+
8+ # Enables additional debug features, no additional debug information if the variable is not set
9+ # How to use: set value to "true" to get more debugging information, but don't do it on production.
210NEXT_PUBLIC_DEBUG = true
311
4- # Minimum level of visible Logs
5- NEXT_PUBLIC_LOG_LEVEL = DEBUG
6- # NEXT_PUBLIC_LOG_LEVEL = ERROR
12+ # Public URL of the application/website.
13+ # How to use: Do not set any value until you need custom domain for your application.
14+ # NEXT_PUBLIC_PUBLIC_URL = https://xxx.com
15+ # NEXT_PUBLIC_PUBLIC_URL = https://xxx.web.app
16+ NEXT_PUBLIC_PUBLIC_URL = http://localhost:3000
17+
718
819# API/Backend basic URL
9- NEXT_PUBLIC_API_URL = http://localhost:3030
20+ NEXT_PUBLIC_API_URL = http://localhost:5000
1021# NEXT_PUBLIC_API_URL = https://dev-api.domain.com
1122# NEXT_PUBLIC_API_URL = https://api.domain.com
1223
13- # Other settings
14- NEXT_PUBLIC_GOOGLE_API_CLIENT_ID = _YOUR_CLIENT_ID_HERE_
24+ # EmailJS configuration for contact form
25+ NEXT_PUBLIC_EMAILJS_KEY = user-xxxx
26+
27+ # Analytics and Advertising
28+ NEXT_PUBLIC_GA_ID = G-...
29+ NEXT_PUBLIC_AMPLITUDE_API_KEY = 69abf7...
30+ NEXT_PUBLIC_ADSENSE_CLIENT_ID = pub-12345...
0 commit comments