Files

20 lines
571 B
JavaScript
Raw Permalink Normal View History

2026-01-27 18:04:50 -06:00
// Copy and paste this into browser console at http://houseofprayer.ddns.net:3000
// Press F12 to open console, paste this, and press Enter
// Update API settings
const newSettings = {
protocol: "http",
hostname: "houseofprayer.ddns.net",
port: "8080",
useLocalStorage: false,
};
localStorage.setItem("api_settings", JSON.stringify(newSettings));
console.log("✓ Settings updated!");
console.log("New settings:", newSettings);
// Reload the page to apply changes
alert("Settings updated! Page will reload now.");
window.location.reload();