sudo-archive/public/config.js

21 lines
978 B
JavaScript
Raw Normal View History

2024-04-03 02:17:59 +00:00
window.__CONFIG__ = {
// The URL for the CORS proxy, the URL must NOT end with a slash!
// If not specified, the onboarding will not allow a "default setup". The user will have to use the extension or set up a proxy themselves
VITE_CORS_PROXY_URL: "",
2024-04-03 02:17:59 +00:00
// The READ API key to access TMDB
VITE_TMDB_READ_API_KEY: "eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiI1NzlkZWYyZDY5ZWFlNDk4ZjJiOTI4MTgyNDdjM2ViMCIsInN1YiI6IjY2MjdmMGJlNjJmMzM1MDE0YmQ4NTFmMiIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.h3KpPvkiaz8uNz1bntAKqsPrxG_4UUWaY3kYME6N6m8",
2024-04-03 02:17:59 +00:00
// The DMCA email displayed in the footer, null to hide the DMCA link
VITE_DMCA_EMAIL: null,
// Whether to disable hash-based routing, leave this as false if you don't know what this is
2024-06-07 19:05:47 +00:00
VITE_NORMAL_ROUTER: true,
2024-04-03 02:17:59 +00:00
// The backend URL to communicate with
2024-06-07 19:05:25 +00:00
VITE_BACKEND_URL: null,
2024-04-03 02:17:59 +00:00
// A comma separated list of disallowed IDs in the case of a DMCA claim - in the format "series-<id>" and "movie-<id>"
2024-06-07 19:05:25 +00:00
VITE_DISALLOWED_IDS: ""
2024-04-03 02:17:59 +00:00
};