Save before testing router

This commit is contained in:
Simon Lübeß
2025-06-02 18:22:34 +02:00
parent 883252c049
commit 0ef2c73c71
14 changed files with 1047 additions and 106 deletions

View File

@ -44,7 +44,7 @@ const target = env.ASPNETCORE_HTTPS_PORT ? `https://localhost:${env.ASPNETCORE_H
env.ASPNETCORE_URLS ? env.ASPNETCORE_URLS.split(';')[0] : 'https://localhost:7085';
// Define a list of all existing backend routes.
const backendRoutes = ['/login', '/ephemeral_token'];
const backendRoutes = ['/login', '/register', '/ephemeral_token'];
// For development, we have a node.js server running that delivers our frontend.
// We have to configure proxies for the backend calls, so that node.js will forward them to the backend.