From 04e8cbf5f8869cf5d0d3a9fe17fa9b89dbd6fc79 Mon Sep 17 00:00:00 2001 From: busti Date: Sat, 9 Dec 2023 03:01:28 +0100 Subject: [PATCH] chore: configure vite to allow for insecure cors connections on the auth rout --- frontend/vite.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 004d372..d5c583f 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -35,6 +35,7 @@ export default defineConfig({ }, '^/auth/': { target: "https://toolshed.j3d1.de:8000/", + secure: false, }, '^/docs/': { target: "https://toolshed.j3d1.de:8000/",