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

Default config.js to not have TMDB set

This commit is contained in:
William Oldham 2024-03-03 18:37:57 +00:00
parent 404d3b885f
commit fa8548d3c2

View file

@ -4,7 +4,7 @@ window.__CONFIG__ = {
VITE_CORS_PROXY_URL: "", VITE_CORS_PROXY_URL: "",
// The READ API key to access TMDB // The READ API key to access TMDB
VITE_TMDB_READ_API_KEY: "CHANGEME", VITE_TMDB_READ_API_KEY: "",
// The DMCA email displayed in the footer, null to hide the DMCA link // The DMCA email displayed in the footer, null to hide the DMCA link
VITE_DMCA_EMAIL: null, VITE_DMCA_EMAIL: null,
@ -16,5 +16,5 @@ window.__CONFIG__ = {
VITE_BACKEND_URL: null, VITE_BACKEND_URL: null,
// A comma separated list of disallowed IDs in the case of a DMCA claim - in the format "series-<id>" and "movie-<id>" // A comma separated list of disallowed IDs in the case of a DMCA claim - in the format "series-<id>" and "movie-<id>"
VITE_DISALLOWED_IDS: "" VITE_DISALLOWED_IDS: "",
}; };