so I am new to netlify. I keep getting a 404 error every time I make a request. This is react, and for the JS code:
await fetch('./.netlify/functions/create-payment-intent.js', {
method: 'post',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ message: "test"}),
}).then((res) => {
return res.json();
});
Terminal:
Request from ::1: POST /.netlify/functions/create-payment-intent.js
Response with status 404 in 3 ms
In the debugger:
POST http://localhost:8888/.netlify/functions/example.js 404 (Not Found)
Please how do I fix this? Thanks.