From c038bcc2a171f67cd6db76f75512568bdb244e46 Mon Sep 17 00:00:00 2001 From: Alessio Davoli Date: Mon, 27 Nov 2023 06:24:49 +0100 Subject: [PATCH] Update --- frontend/src/lib/repo.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/lib/repo.ts b/frontend/src/lib/repo.ts index 376560c..237b9a1 100644 --- a/frontend/src/lib/repo.ts +++ b/frontend/src/lib/repo.ts @@ -2,7 +2,7 @@ const API_URL = "http://localhost:8000/api"; const getAllRoutes = async () => { let data = []; - if (import.meta.env.PROD) { + if (import.meta.env.DEV || import.meta.env.PROD) { const response = await fetch(`${API_URL}/all-routes`); const json = await response.json(); data = json; @@ -15,7 +15,7 @@ const getAllRoutes = async () => { const getRouteCategories = async () => { let data = []; - if (import.meta.env.PROD) { + if (import.meta.env.DEV || import.meta.env.PROD) { const response = await fetch(`${API_URL}/route-categories`); const json = await response.json(); data = json; @@ -28,7 +28,7 @@ const getRouteCategories = async () => { const getRouteByCategory = async (categoryId: number) => { let data = []; - if (import.meta.env.PROD) { + if (import.meta.env.DEV || import.meta.env.PROD) { const response = await fetch(`${API_URL}/route-by-category/${categoryId}`); const json = await response.json(); data = json; @@ -41,7 +41,7 @@ const getRouteByCategory = async (categoryId: number) => { const getRoute = async (routeId: number) => { let data = {}; - if (import.meta.env.PROD) { + if (import.meta.env.DEV || import.meta.env.PROD) { const response = await fetch(`${API_URL}/route/${routeId}`); const json = await response.json(); data = json; @@ -55,7 +55,7 @@ const getRoute = async (routeId: number) => { const getSport = async (routeId: number, sportId: number) => { let data = {}; - if (import.meta.env.PROD) { + if (import.meta.env.DEV || import.meta.env.PROD) { const response = await fetch(`${API_URL}/route/${routeId}/${sportId}`); const json = await response.json(); data = json; @@ -72,7 +72,7 @@ const downloadGPX = async (routeId: number, sportId: number) => { const getPlacemarks = async (routeId: number, sportId: number) => { let data = {}; - if (import.meta.env.PROD) { + if (import.meta.env.DEV || import.meta.env.PROD) { const response = await fetch(`${API_URL}/getPlacemarks/${routeId}/${sportId}`); const json = await response.json(); data = json;