1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00
smov/public/config.js

21 lines
979 B
JavaScript
Raw Normal View History

2024-04-03 04:17:59 +02: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
2024-06-07 21:05:25 +02:00
VITE_CORS_PROXY_URL: "",
2024-04-03 04:17:59 +02:00
// The READ API key to access TMDB
VITE_TMDB_READ_API_KEY: "eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiI1NzlkZWYyZDY5ZWFlNDk4ZjJiOTI4MTgyNDdjM2ViMCIsInN1YiI6IjY2MjdmMGJlNjJmMzM1MDE0YmQ4NTFmMiIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.h3KpPvkiaz8uNz1bntAKqsPrxG_4UUWaY3kYME6N6m8",
2024-04-03 04:17:59 +02: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 21:05:25 +02:00
VITE_NORMAL_ROUTER: false,
2024-04-03 04:17:59 +02:00
// The backend URL to communicate with
2024-06-07 21:05:25 +02:00
VITE_BACKEND_URL: null,
2024-04-03 04:17:59 +02: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 21:05:25 +02:00
VITE_DISALLOWED_IDS: ""
2024-04-03 04:17:59 +02:00
};