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