308f3098f3
The example in .env.example still suggested ditto.pub as the canonical share origin. Use agora.spot so contributors copying the example don't end up generating share URLs that point at a different app.
11 lines
721 B
Bash
11 lines
721 B
Bash
VITE_SENTRY_DSN="https://********************************@*****************.example.com/****************"
|
|
VITE_PLAUSIBLE_DOMAIN="example.tld"
|
|
VITE_PLAUSIBLE_ENDPOINT="https://plausible.example.tld/api/event"
|
|
# Hex pubkey of the nostr-push server (found in nostr-push startup logs as "worker_pubkey")
|
|
VITE_NOSTR_PUSH_PUBKEY=""
|
|
# Canonical origin used when generating shareable URLs (QR codes, copy-link, remote-login callbacks).
|
|
# Primarily useful for native (Capacitor) builds, where window.location.origin is capacitor://localhost.
|
|
# Example: VITE_SHARE_ORIGIN="https://agora.spot"
|
|
VITE_SHARE_ORIGIN=""
|
|
# Set to "*" to allow any host in the Vite dev server (eg. when proxying through a custom domain)
|
|
# ALLOWED_HOSTS="*" |