feat(codex): Cursor compatibility + Next.js 16 proxy migration

This commit is contained in:
decolua
2026-02-02 09:37:30 +07:00
parent 7b864a9dcb
commit 1c6dd6df9a
2 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
output: "standalone", output: "standalone",
images: {
unoptimized: true
},
env: { env: {
NEXT_PUBLIC_CLOUD_URL: "https://9router.com", NEXT_PUBLIC_CLOUD_URL: "https://9router.com",
}, },

View File

@@ -194,7 +194,7 @@ function ComboCard({ combo, copied, onCopy, onEdit, onDelete }) {
) : ( ) : (
combo.models.slice(0, 3).map((model, index) => ( combo.models.slice(0, 3).map((model, index) => (
<code key={index} className="text-[10px] font-mono bg-black/5 dark:bg-white/5 px-1.5 py-0.5 rounded text-text-muted"> <code key={index} className="text-[10px] font-mono bg-black/5 dark:bg-white/5 px-1.5 py-0.5 rounded text-text-muted">
{model.split("/").pop()} {model}
</code> </code>
)) ))
)} )}