theese are my redirects:
/api/* https://tsanko-api.onrender.com/api/:splat 200
/* /index.html 200
this my build command:
Build command
npm run build && cp _redirects frontend/build/_redirects
Publish directory
frontend/build.
And this is my User model:
const mongoose = require(“mongoose”);
const validator = require(“validator”);
const bcrypt = require(“bcryptjs”);
const jwt = require(“jsonwebtoken”);
const crypto = require(“crypto”);
const userSchema = new mongoose.Schema({
name: {
type: String,
required: [true, “Please enter your name”],
maxLength: [30, “Your name cannot exceed 30 characters”],
},
email: {
type: String,
required: [true, “Please enter your email”],
unique: true,
validate: [validator.isEmail, “Please enter valid email address”],
},
password: {
type: String,
required: [true, “Please enter your password”],
minLength: [6, “Your password must be longer than 6 characters”],
select: false,
},
avatar: {
public_id: {
type: String,
required: true,
},
url: {
type: String,
required: true,
},
},
role: {
type: String,
default: “user”,
},
createdAt: {
type: Date,
default: Date.now,
},
resetPasswordToken: String,
resetPasswordExpire: Date,
});
//Encrypt password
userSchema.pre(“save”, async function (next) {
if (!this.isModified(“password”)) {
next();
}
this.password = await bcrypt.hash(this.password, 10);
});
//Compare user password
userSchema.methods.comparePassword = async function (enteredPassword) {
return await bcrypt.compare(enteredPassword, this.password);
};
// Return JWT Token
userSchema.methods.getJwtToken = function () {
return jwt.sign({ id: this._id }, process.env.JWT_SECRET, {
expiresIn: process.env.JWT_EXPIRES_TIME,
});
};
//Generate password reset token
userSchema.methods.getResetPasswordToken = function () {
//Generate token
const resetToken = crypto.randomBytes(20).toString(“hex”);
//Hash and set to resetPasswordToken
this.resetPasswordToken = crypto
.createHash(“sha256”)
.update(resetToken)
.digest(“hex”);
//Set token expire time and set it
this.resetPasswordExpire = Date.now() + 30 * 60 * 1000;
return resetToken;
};
module.exports = mongoose.model(“Userback”, userSchema);
And still not working, I can logout only the first time i log in. If i log in for a second time even with the same account and then logout it refresh the page and token comes again (not clearing).
It work on local and how i said i can logout but only once.
Thats very strange, shall i configurate my