Spaces:
Running
Running
Update
Browse files
src/lib/components/interface/overlay/WorkspaceIdButton.svelte
CHANGED
@@ -118,7 +118,7 @@
|
|
118 |
<div class="space-y-2">
|
119 |
<div class="rounded-lg border border-slate-300 bg-slate-50 p-2 dark:border-slate-600 dark:bg-slate-800">
|
120 |
<div class="break-all font-mono text-sm text-slate-800 dark:text-slate-200">
|
121 |
-
|
122 |
</div>
|
123 |
</div>
|
124 |
<Button
|
|
|
118 |
<div class="space-y-2">
|
119 |
<div class="rounded-lg border border-slate-300 bg-slate-50 p-2 dark:border-slate-600 dark:bg-slate-800">
|
120 |
<div class="break-all font-mono text-sm text-slate-800 dark:text-slate-200">
|
121 |
+
https://blanchon-robothub-frontend.hf.space<span class="bg-blue-100 text-blue-800 px-1 rounded dark:bg-blue-900 dark:text-blue-200">{workspaceId}</span>
|
122 |
</div>
|
123 |
</div>
|
124 |
<Button
|
static-server.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
// Simple static file server for Svelte build output
|
4 |
import { join } from "path";
|
5 |
|
6 |
-
const PORT = process.env.PORT ||
|
7 |
const BUILD_DIR = "./build";
|
8 |
|
9 |
// MIME types for common web assets
|
|
|
3 |
// Simple static file server for Svelte build output
|
4 |
import { join } from "path";
|
5 |
|
6 |
+
const PORT = process.env.PORT || 8000;
|
7 |
const BUILD_DIR = "./build";
|
8 |
|
9 |
// MIME types for common web assets
|