Добрый вечер.
Не могу понять почему получаю ошибку в консоле, кто-нибудь может знает ?
POST localhost:5000/api/auth/login 404 (Not Found)login.vueVue.axios.post('/auth/login', this.user)
.then((response) => {
console.log("Logged in")
this.userLog = res.data
})
.catch((errors) => {
console.log("Cannot login") <--- Эта строка показывается в консоле
})
server/app.js// localhost:5000/api/auth/login
app.use('/api/auth', authRoutes)
server/router/auth.js// localhost:5000/api/auth/login
router.post('/login', controller.login)