Fix cubic review

Signed-off-by: Jonathan <contact@grafikart.fr>
This commit is contained in:
Jonathan
2025-11-19 14:22:00 +01:00
committed by Émile Ré
parent 789775f2fe
commit 7e8222d9b5
11 changed files with 27 additions and 24 deletions

View File

@@ -12,6 +12,10 @@ export default defineConfig({
target: "http://localhost:8080",
changeOrigin: true,
},
"/authz": {
target: "http://localhost:8080",
changeOrigin: true,
},
"/api": {
target: "http://localhost:8080",
changeOrigin: true,
@@ -29,7 +33,9 @@ export default defineConfig({
"/pages": fileURLToPath(new URL("./src/pages", import.meta.url)),
"/routes": fileURLToPath(new URL("./src/routes", import.meta.url)),
"/providers": fileURLToPath(new URL("./src/providers", import.meta.url)),
"/permissions": fileURLToPath(new URL("./src/permissions", import.meta.url)),
"/permissions": fileURLToPath(
new URL("./src/permissions", import.meta.url),
),
},
},
});