development -> main #1

Open
Christopher.Hase wants to merge 93 commits from development into main
Showing only changes of commit edf15bbf47 - Show all commits

View file

@ -8,6 +8,9 @@ const port = 8090;
//CORS aktivieren
app.use(cors());
// Füge dies hinzu, um die OPTIONS-Anfragen korrekt zu behandeln
app.options('*', cors());
// Verwende die Middleware, um POST-Body als JSON zu lesen
app.use(express.json());