mirror of
https://github.com/KevinMidboe/planetposen.git
synced 2025-10-29 17:50:32 +00:00
Check if localhost before making fetch request.
This commit is contained in:
@@ -58,7 +58,11 @@ export default {
|
||||
})
|
||||
},
|
||||
makeIntent() {
|
||||
fetch('/api/stripe/create-payment-intent', {
|
||||
let url = '/api/stripe/create-payment-intent';
|
||||
if (window.location.href.includes('localhost'))
|
||||
url = 'http://localhost:30010'.concat(url)
|
||||
|
||||
fetch(url, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
|
||||
Reference in New Issue
Block a user