From 1b69cf5ef6a15cd937a61f675a03ed7fb65d3cb3 Mon Sep 17 00:00:00 2001 From: jedi Date: Thu, 11 May 2023 12:30:57 +0200 Subject: [PATCH] stash --- frontend/vite.config.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index ed6b2f1..53448c3 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -16,6 +16,7 @@ export default defineConfig({ cors: true, headers: { //allow all origins + //'Access-Control-Allow-Origin': 'http://10.23.42.128:8000, http://10.23.42.168:8000', 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS', 'Access-Control-Allow-Headers': 'Origin, Content-Type, X-Auth-Token, Authorization, Accept, charset, boundary, Content-Length', 'Access-Control-Allow-Credentials': 'true', @@ -27,6 +28,23 @@ export default defineConfig({ + ' connect-src * data:', // TODO: change * to https://* for production (probably in nginx config not here) }, }, + proxy: { + '^/api/': { + target: "http://127.0.0.1:8000/", + }, + '^/auth/': { + target: "http://127.0.0.1:8000/", + }, + '^/admin/': { + target: "http://127.0.0.1:8000/", + }, + '^/docs/': { + target: "http://127.0.0.1:8000/", + }, + '^/static/': { + target: "http://127.0.0.1:8000/", + } + }, test: { include: ['src/tests/**/*.js'], globals: true,