fix(marketplace): isolate api under marketplace prefix

This commit is contained in:
unclecode
2025-10-09 22:26:15 +08:00
parent 2c373f0642
commit 5a4f21fad9
7 changed files with 42 additions and 38 deletions

View File

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

View File

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