From e2caea31eba2df03831c210f00234e1422d53133 Mon Sep 17 00:00:00 2001 From: Park Shinhyung <23102009@seoultech.ac.kr> Date: Wed, 18 Jun 2025 07:23:14 +0900 Subject: [PATCH] fix --- back/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/back/app.js b/back/app.js index 893657b..dee5bfa 100644 --- a/back/app.js +++ b/back/app.js @@ -41,5 +41,8 @@ app.get('/', (req, res) => { res.send('STAR backend server is running!'); }); +app.post('/api/users/login', (req, res) => { + console.log('📥 req.body:', req.body); // undefined인지, 비어 있는지 확인 +}); module.exports = app; \ No newline at end of file