Added double quotes in fallback domain

This commit is contained in:
Ayush Choudhary
2024-02-28 21:26:48 +05:30
committed by GitHub
parent c3ee76a06b
commit 3dc9d80d44
+1 -1
View File
@@ -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`;