25 lines
1.2 KiB
Bash
25 lines
1.2 KiB
Bash
# Deployed (balinyaar.ir) values, read by `next build` when NODE_ENV=production.
|
|
#
|
|
# Every NEXT_PUBLIC_* value here is INLINED INTO THE CLIENT BUNDLE AT BUILD TIME — it is public by
|
|
# definition, and changing one requires rebuilding the image, not restarting the container.
|
|
# `.env.development` still owns the local `npm run dev` loop and is untouched by this file.
|
|
|
|
# Enables analytics and public resources.
|
|
NEXT_PUBLIC_ENV = production
|
|
|
|
# Off in a deployed build — `true` prints the resolved @/config (incl. the API URL) to the browser console.
|
|
NEXT_PUBLIC_DEBUG = false
|
|
|
|
# Public origin of the web app.
|
|
NEXT_PUBLIC_PUBLIC_URL = https://balinyaar.ir
|
|
|
|
# Absolute origin used only for metadata (OG tags, metadataBase, robots.ts, sitemap.ts) — never for API calls.
|
|
NEXT_PUBLIC_SITE_URL = https://balinyaar.ir
|
|
|
|
# The API, reached from the BROWSER — so it is the public hostname Caddy serves, never the container name.
|
|
NEXT_PUBLIC_API_URL = https://api.balinyaar.ir
|
|
|
|
# Neshan **web** key (client-embeddable maps/search) from https://platform.neshan.org. Unset: the address
|
|
# map-pin picker falls back to its bounded-canvas grid stand-in. Rebuild the client image after setting it.
|
|
# NEXT_PUBLIC_NESHAN_KEY = your-neshan-web-key
|