Merge pull request #201 from Larmyliu/feat/proxyServerUrl

Update Vite configuration to enable host access and use `window.location.hostname` for Inspector URL
This commit is contained in:
Ola Hungerford
2025-03-22 21:13:39 -07:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ import ToolsTab from "./components/ToolsTab";
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 App = () => {
// Handle OAuth callback route

View File

@@ -5,7 +5,9 @@ import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {},
server: {
host: true,
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),