Skip to content

Commit b74d4e7

Browse files
fix: fix merge conflicts
1 parent 2f82384 commit b74d4e7

File tree

5 files changed

+159
-278
lines changed

5 files changed

+159
-278
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
"gatsby-source-filesystem": "^4.24.0",
4343
"lodash": "^4.17.21",
4444
"micro": "^9.4.1",
45-
"qs": "^6.11.0"
45+
"qs": "^6.11.0",
46+
"winston": "^3.8.2"
4647
},
4748
"devDependencies": {
4849
"@babel/cli": "^7.19.3",

src/constants/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ export const IS_PROD = process.env.NODE_ENV === "production";
55
// Request
66
export const REQUEST_URL_SLUG = "/api/episerver";
77
export const REQUEST_ACCEPT_HEADER = "application/json";
8+
export const REQUEST_TIMEOUT = 1800000;
9+
export const REQUEST_THROTTLE_INTERVAL = 6000;
10+
export const REQUEST_DEBOUNCE_INTERVAL = 6000;
811
export const REQUEST_TIMEOUT = 120000;
912
export const REQUEST_THROTTLE_INTERVAL = 3000;
1013
export const REQUEST_DEBOUNCE_INTERVAL = 3000;

0 commit comments

Comments
 (0)