diff options
| author | Ayush Choudhary <[email protected]> | 2024-02-28 21:26:48 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-02-28 21:26:48 +0530 |
| commit | 3dc9d80d4402d1af511bdd7c4e1acb79068bfc6b (patch) | |
| tree | b812110b82635eed5c24c75aa981135d91ce2da9 /src | |
| parent | c3ee76a06b7527548a4699db3d9fa55c800c767c (diff) | |
| download | aniwatch-api-3dc9d80d4402d1af511bdd7c4e1acb79068bfc6b.tar.xz aniwatch-api-3dc9d80d4402d1af511bdd7c4e1acb79068bfc6b.zip | |
Added double quotes in fallback domain
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils/constants.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 7516d25..ee49d35 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -9,7 +9,7 @@ export const USER_AGENT_HEADER = export const ACCEPT_HEADER = "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9"; -const DOMAIN = process.env.DOMAIN || 'aniwatchtv.to' +const DOMAIN = process.env.DOMAIN || "aniwatchtv.to" export const SRC_BASE_URL = `https://${DOMAIN}`; export const SRC_AJAX_URL = `${SRC_BASE_URL}/ajax`; |
