Merge branch 'main' into main

This commit is contained in:
Pulkit Sharma
2025-03-23 11:08:55 +05:30
committed by GitHub
7 changed files with 56 additions and 9 deletions

View File

@@ -50,7 +50,7 @@ import { InspectorConfig } from "./lib/configurationTypes";
const params = new URLSearchParams(window.location.search);
const PROXY_PORT = params.get("proxyPort") ?? "3000";
const PROXY_SERVER_URL = `http://localhost:${PROXY_PORT}`;
const PROXY_SERVER_URL = `http://${window.location.hostname}:${PROXY_PORT}`;
const CONFIG_LOCAL_STORAGE_KEY = "inspectorConfig_v1";
const App = () => {