Spaces:
Sleeping
Sleeping
Fix: use dynamix API URL
Browse files- frontend/index.html +1 -1
frontend/index.html
CHANGED
|
@@ -380,7 +380,7 @@
|
|
| 380 |
</div>
|
| 381 |
|
| 382 |
<script>
|
| 383 |
-
const API_URL = 'http://localhost:8000';
|
| 384 |
|
| 385 |
// Upload handlers
|
| 386 |
const uploadArea = document.getElementById('uploadArea');
|
|
|
|
| 380 |
</div>
|
| 381 |
|
| 382 |
<script>
|
| 383 |
+
const API_URL = window.location.origin; // 'http://localhost:8000';
|
| 384 |
|
| 385 |
// Upload handlers
|
| 386 |
const uploadArea = document.getElementById('uploadArea');
|