This is my current code:
const mongoose = require("mongoose")
const params = new URLSearchParams(window.location.search)
module.exports = (req, res) => {
res.send({
creatorid: "",
whitelisted: false
})
}
At the moment, it is giving me the error: window is not defined.
I have no idea why. Can someone help please?