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