mirror of
https://github.com/decolua/9router.git
synced 2026-05-08 12:01:28 +00:00
feat(codex): Cursor compatibility + Next.js 16 proxy migration
This commit is contained in:
@@ -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",
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -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>
|
||||||
))
|
))
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user