From 76a3031fa0f4915d8c3948d1b6ab5b990da6b04c Mon Sep 17 00:00:00 2001 From: Ronaldo Macapobre Date: Thu, 5 Dec 2024 08:20:17 -0800 Subject: [PATCH] Changed the proxy target from http to https to fix SonarCloud issue --- web/vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/vite.config.js b/web/vite.config.js index ee422dfb..281ed280 100644 --- a/web/vite.config.js +++ b/web/vite.config.js @@ -43,7 +43,7 @@ export default defineConfig({ https: true, proxy: { '^/api': { - target: 'http://api:5000', + target: 'https://api:5000', changeOrigin: true, headers: { Connection: 'keep-alive',