// Where the contact form POSTs. // // Default = the local `voltro serverless dev` port (8910), so the form works // the moment you run `pnpm fn:dev` in another terminal. For production, set // this to the URL `voltro serverless deploy` printed for your function (the // Cloudflare / Scaleway endpoint, or your self-hosted node sidecar). // // A plain constant — not `publicEnv` — so the template typechecks BEFORE // `voltro dev` generates the env types. To switch to typed env: declare // `VOLTRO_PUBLIC_CONTACT_FN_URL` in app.config.ts and, after one `voltro dev`, // read `publicEnv.VOLTRO_PUBLIC_CONTACT_FN_URL` from '@voltro/env/public'. export const CONTACT_ENDPOINT = 'http://localhost:8910'