"use client"; import { getEnvs } from "@/libs/environment/env"; export const useEnv = () => { const currentUrl = window.location.href; const envs = getEnvs(currentUrl); return envs; };