22 lines
946 B
Bash
22 lines
946 B
Bash
# Environment similar to NODE_ENV.
|
|
# Analytics and public resources are enabled only in "production"
|
|
# How to use: set value to "production" to get fully functional application.
|
|
NEXT_PUBLIC_ENV = development
|
|
# NEXT_PUBLIC_ENV = preview
|
|
# NEXT_PUBLIC_ENV = production
|
|
|
|
# Enables additional debug features, no additional debug information if the variable is not set
|
|
# How to use: set value to "true" to get more debugging information, but don't do it on production.
|
|
NEXT_PUBLIC_DEBUG = true
|
|
|
|
# Public URL of the application/website.
|
|
# How to use: Do not set any value until you need custom domain for your application.
|
|
# NEXT_PUBLIC_PUBLIC_URL = https://xxx.com
|
|
# NEXT_PUBLIC_PUBLIC_URL = https://xxx.web.app
|
|
NEXT_PUBLIC_PUBLIC_URL = http://localhost:3000
|
|
|
|
|
|
# API/Backend basic URL (the Baya server)
|
|
NEXT_PUBLIC_API_URL = https://localhost:5002
|
|
# NEXT_PUBLIC_API_URL = https://dev-api.domain.com
|
|
# NEXT_PUBLIC_API_URL = https://api.domain.com |