fix(marketplace): Update URLs to use /marketplace path and relative API endpoints

- Change API_BASE to relative '/api' for production
- Move marketplace to /marketplace instead of /marketplace/frontend
- Update MkDocs navigation
- Fix logo path in marketplace index
This commit is contained in:
unclecode
2025-10-02 17:08:50 +08:00
parent 408ad1b750
commit 749d200866
9 changed files with 2289 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
// App Detail Page JavaScript
const API_BASE = 'http://localhost:8100/api';
const API_BASE = '/api';
class AppDetailPage {
constructor() {

View File

@@ -1,5 +1,5 @@
// Marketplace JS - Magazine Layout
const API_BASE = 'http://localhost:8100/api';
const API_BASE = '/api';
const CACHE_TTL = 3600000; // 1 hour in ms
class MarketplaceCache {