diff --git a/next.config.mjs b/next.config.mjs index 27204737..108232f9 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,9 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", + images: { + unoptimized: true + }, env: { NEXT_PUBLIC_CLOUD_URL: "https://9router.com", }, diff --git a/src/app/(dashboard)/dashboard/combos/page.js b/src/app/(dashboard)/dashboard/combos/page.js index 3ff8f1a7..1e2b950d 100644 --- a/src/app/(dashboard)/dashboard/combos/page.js +++ b/src/app/(dashboard)/dashboard/combos/page.js @@ -194,7 +194,7 @@ function ComboCard({ combo, copied, onCopy, onEdit, onDelete }) { ) : ( combo.models.slice(0, 3).map((model, index) => ( - {model.split("/").pop()} + {model} )) )}