From fa8548d3c28b94b9e18c012cd83b84493fb0d459 Mon Sep 17 00:00:00 2001 From: William Oldham Date: Sun, 3 Mar 2024 18:37:57 +0000 Subject: [PATCH] Default config.js to not have TMDB set --- public/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/config.js b/public/config.js index a0681d06..feb65e84 100644 --- a/public/config.js +++ b/public/config.js @@ -4,7 +4,7 @@ window.__CONFIG__ = { VITE_CORS_PROXY_URL: "", // 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 VITE_DMCA_EMAIL: null, @@ -16,5 +16,5 @@ window.__CONFIG__ = { VITE_BACKEND_URL: null, // A comma separated list of disallowed IDs in the case of a DMCA claim - in the format "series-" and "movie-" - VITE_DISALLOWED_IDS: "" + VITE_DISALLOWED_IDS: "", };