This commit is contained in:
yaschalew
2026-06-25 09:45:59 +03:00
parent de81ee1239
commit 84675f953e
2 changed files with 141 additions and 135 deletions

View File

@@ -1,7 +1,11 @@
export const HealthCheck = () => {
const url = import.meta.env.VITE_API_URL?? "undefined";
const url3 = import.meta.env.VITE_API_URL4?? "undefined";
const url1 = import.meta.env.VITE_API_URL?? "undefined";
const url2 = import.meta.env.VITE_BASE_API_URL?? "undefined";
const url3 = import.meta.env.VITE_USER_MANAGEMENT_BASE?? "undefined";
return <div>
<h2>{url}-----------{url3}</h2>
<h2>-----------{url1}</h2>
<h2>-----------{url2}</h2>
<h2>-----------{url3}</h2>
</div>
}