From 1c6dd6df9a839262bd91153deac1f347816a8319 Mon Sep 17 00:00:00 2001 From: decolua Date: Mon, 2 Feb 2026 09:37:30 +0700 Subject: [PATCH] feat(codex): Cursor compatibility + Next.js 16 proxy migration --- next.config.mjs | 3 +++ src/app/(dashboard)/dashboard/combos/page.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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} )) )}