diff --git a/apps/jingrow/frontend/src/views/dev/AppMarketplace.vue b/apps/jingrow/frontend/src/views/dev/AppMarketplace.vue index bd6de31..2ba3f2f 100644 --- a/apps/jingrow/frontend/src/views/dev/AppMarketplace.vue +++ b/apps/jingrow/frontend/src/views/dev/AppMarketplace.vue @@ -371,8 +371,8 @@ function getImageUrl(imageUrl: string): string { if (imageUrl.startsWith('http')) { return imageUrl } - // 使用环境变量中的云端URL拼接 - const cloudUrl = import.meta.env.VITE_JINGROW_CLOUD_URL || 'https://cloud.jingrow.com' + // 使用云端URL拼接 + const cloudUrl = 'https://cloud.jingrow.com' return `${cloudUrl}${imageUrl.startsWith('/') ? '' : '/'}${imageUrl}` } diff --git a/apps/jingrow/frontend/src/views/dev/MyPublishedApps.vue b/apps/jingrow/frontend/src/views/dev/MyPublishedApps.vue index fa23345..208e0b9 100644 --- a/apps/jingrow/frontend/src/views/dev/MyPublishedApps.vue +++ b/apps/jingrow/frontend/src/views/dev/MyPublishedApps.vue @@ -235,8 +235,8 @@ function getImageUrl(imageUrl: string): string { if (imageUrl.startsWith('http')) { return imageUrl } - // 使用环境变量中的云端URL拼接 - const cloudUrl = import.meta.env.VITE_JINGROW_CLOUD_URL || 'https://cloud.jingrow.com' + // 使用云端URL拼接 + const cloudUrl = 'https://cloud.jingrow.com' return `${cloudUrl}${imageUrl.startsWith('/') ? '' : '/'}${imageUrl}` }