🩹 Send request body as data instead of json

This commit is contained in:
conlan0
2024-07-25 15:25:58 -04:00
committed by GitHub
parent bfcccd0139
commit 78ea929c93

View File

@@ -33,7 +33,7 @@ module.exports = (req, res) => {
const requestConfig = {
method: req.method,
url: targetURL,
json: req.body,
data: req.body,
headers,
};