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

22 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-02-26 16:54:56 +01:00
window.__CONFIG__ = {
// The URL for the CORS proxy, the URL must NOT end with a slash!
2024-03-07 04:39:21 +01:00
VITE_CORS_PROXY_URL: ["https://sudo-proxy.netlify.app", "https://sudo-proxy.up.railway.app", "https://sudo-proxy2.up.railway.app"], // free proxy!
2024-02-26 16:54:56 +01:00
// The READ API key to access TMDB
2024-03-07 14:56:03 +01:00
VITE_TMDB_READ_API_KEY: "eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJhZTljNGE2ZDE1ZDFiODZiNzdlMWQyYmI5ZGY0MzdmYyIsInN1YiI6IjY1YjNmMWI0NTk0Yzk0MDE2MzNkZDBjNSIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.kAX7TkbKuJkNty6IsjcCLnoENFicVZn6d6DkLQsy3p8",
2024-02-26 16:54:56 +01:00
// The DMCA email displayed in the footer, null to hide the DMCA link
2024-03-01 05:24:02 +01:00
VITE_DMCA_EMAIL: "sudo-flix@proton.me",
2024-02-26 16:54:56 +01:00
// Whether to disable hash-based routing, leave this as false if you don't know what this is
VITE_NORMAL_ROUTER: true,
2024-02-26 16:54:56 +01:00
// The backend URL to communicate with, defaults to the movie-web hosted one at backend.movie-web.app
VITE_BACKEND_URL: "https://sudo-flix-backend.lol", // "https://mw-backend.lonelil.com",
2024-02-26 16:54:56 +01:00
2024-03-07 04:14:40 +01:00
VITE_TURNSTILE_KEY: "0x4AAAAAAATd-oefbvXlJvmj",
2024-02-26 16:54:56 +01:00
// A comma separated list of disallowed IDs in the case of a DMCA claim - in the format "series-<id>" and "movie-<id>"
2024-03-03 19:37:57 +01:00
VITE_DISALLOWED_IDS: "",
2024-02-26 16:54:56 +01:00
};