From 6255efd98dfbc53da9b689eb32ed6819f3e2cd65 Mon Sep 17 00:00:00 2001 From: Spythere Date: Mon, 8 Apr 2024 23:44:37 +0200 Subject: [PATCH] fix: http url --- src/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.ts b/src/http.ts index 6b6645a..9b1d8be 100644 --- a/src/http.ts +++ b/src/http.ts @@ -4,7 +4,7 @@ const http = axios.create({ baseURL: import.meta.env.VITE_API_DEV === '1' && import.meta.env.DEV ? 'http://localhost:3001' - : 'https://spythere.spythere.eu', + : 'https://stacjownik.spythere.eu', }); export default http;