Updated config and OPTIONS method for function.

This commit is contained in:
Michael Mainguy 2023-11-07 13:32:47 -06:00
parent 606a51c767
commit 8d5d20b703

View File

@ -7,9 +7,9 @@ const authToken = Buffer.from(auth).toString('base64');
function buildOptions(req: Request) { function buildOptions(req: Request) {
if (req.method == 'OPTIONS') { if (req.method == 'OPTIONS') {
const origin = req.headers['origin']; const origin = req.headers.get('Origin');
console.log(origin); console.log(origin);
return new Response( const res = new Response(
"", "",
{ {
headers: { headers: {
@ -20,7 +20,9 @@ function buildOptions(req: Request) {
'Access-Control-Allow-Credentials': 'true' 'Access-Control-Allow-Credentials': 'true'
}, },
status: 200 status: 200
}) });
console.log(res);
return res;
} else { } else {
return null; return null;
} }