From 8eb5317a5e92fc7649346355427a7208be672761 Mon Sep 17 00:00:00 2001 From: Andreas Dinauer Date: Sun, 15 Feb 2026 11:50:36 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A=20Add=20base=20route?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/Api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/Api.ts b/app/api/Api.ts index 3e695df..fb8b686 100644 --- a/app/api/Api.ts +++ b/app/api/Api.ts @@ -1,5 +1,5 @@ import axios, {type AxiosInstance} from "axios"; export const Api: AxiosInstance = axios.create({ - baseURL: '/api' + baseURL: process.env.NUXT_APP_BASE_URL + '/api' }); \ No newline at end of file