9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
import type { z } from "zod"
|
|
import type { zAmbiente } from "../ts/ambiente"
|
|
|
|
export const urlAutenticacao = (ambiente: z.infer<typeof zAmbiente>) =>
|
|
`${
|
|
ambiente == "producao"
|
|
? "https://carro-de-boi.idz.one"
|
|
: "http://localhost:5030"
|
|
}/autenticacao`
|