Browse Source

webview.js fix

marek 1 month ago
parent
commit
d7a9b6e86f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/webview.js

+ 1 - 1
apps/webview.js

@@ -2,5 +2,5 @@ import { Webview } from "webview-bun";
 
 const webview = new Webview();
 
-webview.navigate(`http://${process.env.HOSTNAME}:${process.env.PORT}`);
+webview.navigate(`http://127.0.0.1`);
 webview.run();