Prepparing for gatsby testing
This commit is contained in:
@ -8,7 +8,8 @@
|
||||
"start": "npm run develop",
|
||||
"serve": "gatsby serve",
|
||||
"deploy": "serverless client deploy --no-confirm",
|
||||
"clean": "gatsby clean"
|
||||
"clean": "gatsby clean",
|
||||
"test": "echo \"No tests defined\""
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,6 +1,5 @@
|
||||
export const APIRequest = (url:string, body?:object) => {
|
||||
return fetch(`https://api.domsplace.com/v1/${url}`, {
|
||||
//mode: 'no-cors',
|
||||
method: body ? 'POST' : 'GET',
|
||||
body: body ? JSON.stringify(body) : null,
|
||||
headers: {
|
||||
|
Reference in New Issue
Block a user