При перезагрузке страницы в консоль браузера летит следующая ошибка:
Ошибка карты кода: request failed with status 404
URL ресурса: localhost:3000/_nuxt/vendors.app.js
URL карты кода: unfetch.mjs.map
Гуглил, но решение не нашёл. Код клиента:
sendRequestLogin(e) {
if (this.loginInput === '' || this.passwordInput === '') {
this.emptyInput = 'Invalid data'
}
this.$axios
.post('/login', {
name: this.loginInput,
password: this.passwordInput
})
.then(res => {
if (res.data.auth === true) {
this.$emit('close', res.data)
this.$emit('login', res.data)
}
if (res.data.auth === false) {
this.emptyInput = res.data.text
}
})
.catch(err => {
consola.log(err)
})
},
И код сервера:
app.post('/login', function(req, res) {
// authorization
const nick = req.body.name
const password = req.body.password
db.all(SQLCHeck, [], (err, row) => {
if (row.length === '0') {
const jSON = JSON.stringify({
auth: false,
text: 'Wrong login or password!'
})
return res.send(jSON)
}
if (err) {
return consola.log(err.message)
}
const dataLogin = {
auth: true,
userNick: nick
}
const jSON = JSON.stringify(dataLogin)
return res.send(jSON) // send data{} to client
}
Как мне быть?