Create constant.js
Browse files- lib/constant.js +11 -0
lib/constant.js
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export const DEFAULT_HEADERS = {
|
2 |
+
'accept': '*/*',
|
3 |
+
'accept-encoding': 'gzip, deflate, br',
|
4 |
+
'accept-language': 'en-US,en;q=0.9',
|
5 |
+
'sec-ch-ua': '"Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"',
|
6 |
+
'sec-ch-ua-mobile': '?0',
|
7 |
+
'sec-fetch-dest': 'empty',
|
8 |
+
'sec-fetch-mode': 'cors',
|
9 |
+
'sec-fetch-site': 'same-origin',
|
10 |
+
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36'
|
11 |
+
}
|