From 7a4d0c0c0852de8612b30b9663aff692de2ba200 Mon Sep 17 00:00:00 2001 From: Oleg Lobanov Date: Sat, 26 Aug 2023 14:01:01 +0200 Subject: [PATCH] chore: fix frontend dev proxy settings --- frontend/vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 1a906cb8..5e3a6824 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -29,7 +29,7 @@ export default defineConfig(({ command }) => { resolve, server: { proxy: { - "/api": "http://localhost:8080", + "/api": "http://127.0.0.1:8080", }, }, };