mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
* chore(release): open v3.8.10 development cycle Bump 3.8.9 → 3.8.10 across package.json, lockfile, electron, open-sse, and docs/reference/openapi.yaml; add the [3.8.10] CHANGELOG section (root + 41 i18n mirrors) as the integration target for the cycle. Entries land here as work merges into release/v3.8.10; finalized by the release flow. * fix(providers): resolve web provider alias collisions Assign unique aliases to HuggingChat, Kimi Web, and Qwen Web so they no longer shadow primary providers or trigger startup warnings. Add a unit test to enforce provider alias uniqueness and prevent future collisions. Also expand local ignore and VS Code exclude rules for agent, build, and worktree artifacts. * fix(responses): normalize image_url parts across input paths (#3150) Normalize image_url parts across all Responses input paths. Integrated into release/v3.8.10. * fix(api-manager): preserve API key expiration local time (#3146) Preserve API key expiration local time + clear button. Integrated into release/v3.8.10. * Strip previous_response_id for stateless Responses upstreams (#3143) Strip previous_response_id for stateless Responses upstreams (auto/strip/preserve). Integrated into release/v3.8.10. * fix(opencode-plugin): map thinking cap to interleaved in model+combo (#3138) Map caps.thinking to ModelV2.capabilities.interleaved for opencode-plugin. Integrated into release/v3.8.10. * fix(providers): use synced models as fallback for all providers (#3148) Use synced models as authoritative local catalog for all providers (+regression test). Integrated into release/v3.8.10. * fix(qoder): bifurcate validation by token type — PAT→Cosy, regular API key→dashscope (#3149) Bifurcate Qoder validation by token type (PAT→Cosy, regular→dashscope) +regression test. Integrated into release/v3.8.10. * fix(antigravity): dynamic model resolution via MITM alias table (#3144) Dynamic antigravity MITM model resolution in the executor (+bug fix +regression test; DB import dropped from client-reachable config). Integrated into release/v3.8.10. * Feature/batch allow big (#3128) Podman deployment options + larger upload body-size limits (+CONTAINER_HOST docs). Integrated into release/v3.8.10. * fix(fireworks): preserve fully-qualified router/model IDs (#3133) (#3160) Fireworks router IDs (accounts/fireworks/routers/...) were double-prefixed with accounts/fireworks/models/ → upstream 404. Add optional acceptedModelIdPrefixes to the registry entry and skip the prepend when the model already starts with an accepted prefix. Co-authored-by: KooshaPari <KooshaPari@users.noreply.github.com> * fix(llama-cpp): route to configured local baseUrl instead of OpenAI (#3136) (#3161) llama-cpp was missing from the local-provider group in buildUrl(), so it fell through to the OpenAI baseUrl and returned an OpenAI 401. Add the case to resolve the connection's providerSpecificData.baseUrl. Co-authored-by: tjengbudi <tjengbudi@users.noreply.github.com> * fix(t3-chat-web): parse cookies + convexSessionId from stored credential (#3007) (#3162) The executor read credentials.cookies/convexSessionId, but the pipeline only stores the pasted string under apiKey → t3.chat always 400'd. Parse both values from apiKey (fallback accessToken), mirroring validation.ts. Co-authored-by: minhtran162 <minhtran162@users.noreply.github.com> * fix(minimax): stop capping MiniMax-M3 / M2.7 max_tokens at 8192 (#3141) (#3163) MiniMax-M3 had no MODEL_SPECS entry and capitalized MiniMax-M2.7 missed its lowercase spec (case-sensitive lookup) → both fell to the 8192 default cap. Add the M3 spec (512K output), alias the capitalized ids, and make getModelSpec lookups case-insensitive. Co-authored-by: totaltube <totaltube@users.noreply.github.com> * fix(github-copilot): discover model catalog live from api.githubcopilot.com (#3120, #3121) (#3164) The github (Copilot) provider had a static hardcoded catalog with no discovery source, so Import Models never refreshed (#3120) and advertised non-entitled models that 400 on use (#3121). Add a live /models fetch with fallback to the static list. Co-authored-by: gabrielmoreira <gabrielmoreira@users.noreply.github.com> * fix(combo): invalidate nested-combo cache on edits + log DATA_DIR (#3147) (#3165) Editing a combo did not invalidate the 10s nested-combo expansion caches (chat.ts getCombosCachedForChat + chatCore.ts getCombosCached; the exported clearCombosCache was dead code), so a removed nested target/model could be served as a phantom for up to 10s. Wire a shared monotonic combos-cache version in readCache (bumped by invalidateDbCache("combos") on every combo write); both cache layers treat a version mismatch as a miss. Also log the resolved DATA_DIR/SQLITE_FILE absolute path at DB init so the reporter's 'persists across restart + volume wipe' symptom (a multi-replica Docker volume/DATA_DIR mismatch, not a routing bug) is diagnosable from logs. Includes consolidated CHANGELOG entries for #3133/#3136/#3007/#3141/#3120/#3121. Co-authored-by: ViFigueiredo <ViFigueiredo@users.noreply.github.com> * fix(web-tools): parse bare JSON tool calls (#3157) Parse bare JSON tool calls for deepseek-web (#2820) + fuzzy tool-name matching. Integrated into release/v3.8.10. * fix(misc): minor fixes across reasoning cache, account fallback, binary manager (#3177) Misc: ProviderProfile export, DeepSeek reasoning regex, binary guard. Integrated into release/v3.8.10. * fix(kiro): minor OAuth social exchange tweaks (#3176) Kiro social OAuth: optional targetProvider passthrough. Integrated into release/v3.8.10. * deps: bump hono from 4.12.18 to 4.12.23 (#3179) Bump hono to 4.12.23. Integrated into release/v3.8.10. * fix(providerRegistry): update kilocode format and executor (#3166) kilocode: openai format + default executor (matches kilo-gateway) + registry test. Integrated into release/v3.8.10. * feat(metrics): cross-request TTFT and gap latency after tool calls (#3173) Cross-request TTFT + gap-after-tool latency metrics (+test). Integrated into release/v3.8.10. * feat(dashboard): provider stats API endpoint and dashboard page (#3175) Provider stats dashboard + API (SQL moved to db module per Hard Rule #5, +test). Integrated into release/v3.8.10. * fix(usage): sequential+spaced OAuth quota sync, reactive force-refresh, actionable 401 (#3156) Sequential+spaced OAuth quota sync, reactive force-refresh on 401, actionable 401 in UI. Integrated into release/v3.8.10. * fix(healthcheck): per-provider proactive-refresh skip list (rescue short-TTL OAuth) (#3159) Per-provider proactive-refresh skip list (OMNIROUTE_HEALTHCHECK_SKIP_PROVIDERS) to rescue short-TTL OAuth. Integrated into release/v3.8.10. * feat(quota): show OAuth token expiry on provider cards (small, blue, informative) (#3178) Show OAuth token expiry on provider cards (small, blue, informative). Integrated into release/v3.8.10. * fix(providers): empty refresh must not resurface just-cleared synced models (#3181) Empty refresh must not resurface just-cleared synced models (fixes the release-blocking provider-models-route test). Integrated into release/v3.8.10. * chore(release): v3.8.10 — 2026-06-04 (finalize CHANGELOG) --------- Co-authored-by: Wilson <pedbookmed@gmail.com> Co-authored-by: Xiangzhe <32761048+xz-dev@users.noreply.github.com> Co-authored-by: Jan Leon <Jan.gaschler@gmail.com> Co-authored-by: M.M <mr.maatoug@gmail.com> Co-authored-by: Hernan Javier Ardila Sanchez <hjasgr@gmail.com> Co-authored-by: Markus Hartung <mail@hartmark.se> Co-authored-by: KooshaPari <KooshaPari@users.noreply.github.com> Co-authored-by: tjengbudi <tjengbudi@users.noreply.github.com> Co-authored-by: minhtran162 <minhtran162@users.noreply.github.com> Co-authored-by: totaltube <totaltube@users.noreply.github.com> Co-authored-by: gabrielmoreira <gabrielmoreira@users.noreply.github.com> Co-authored-by: ViFigueiredo <ViFigueiredo@users.noreply.github.com> Co-authored-by: PizzaV <103120356+pizzav-xyz@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicolas Lorin <androw95220@gmail.com>
509 lines
17 KiB
JavaScript
509 lines
17 KiB
JavaScript
import createNextIntlPlugin from "next-intl/plugin";
|
|
import { createMDX } from "fumadocs-mdx/next";
|
|
import { dirname } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const withNextIntl = createNextIntlPlugin("./src/i18n/request.ts");
|
|
const distDir = process.env.NEXT_DIST_DIR || ".build/next";
|
|
const projectRoot = dirname(fileURLToPath(import.meta.url));
|
|
const scriptSrc =
|
|
process.env.NODE_ENV === "development"
|
|
? "script-src 'self' 'unsafe-inline' 'unsafe-eval' blob:"
|
|
: "script-src 'self' 'unsafe-inline' 'unsafe-eval' blob:";
|
|
const contentSecurityPolicy = [
|
|
"default-src 'self'",
|
|
"base-uri 'self'",
|
|
"object-src 'none'",
|
|
"frame-ancestors 'none'",
|
|
"form-action 'self'",
|
|
scriptSrc,
|
|
"style-src 'self' 'unsafe-inline' https://fonts.googleapis.com",
|
|
"font-src 'self' https://fonts.gstatic.com data:",
|
|
"img-src 'self' data: blob: https:",
|
|
"media-src 'self' data: blob:",
|
|
"connect-src 'self' http://localhost:* http://127.0.0.1:* ws://localhost:* ws://127.0.0.1:* https: wss:",
|
|
"worker-src 'self' blob:",
|
|
"manifest-src 'self'",
|
|
].join("; ");
|
|
const securityHeaders = [
|
|
{
|
|
key: "Content-Security-Policy",
|
|
value: contentSecurityPolicy,
|
|
},
|
|
{
|
|
key: "X-Frame-Options",
|
|
value: "DENY",
|
|
},
|
|
{
|
|
key: "X-Content-Type-Options",
|
|
value: "nosniff",
|
|
},
|
|
{
|
|
key: "Referrer-Policy",
|
|
value: "strict-origin-when-cross-origin",
|
|
},
|
|
{
|
|
key: "Permissions-Policy",
|
|
value: "camera=(), microphone=(), geolocation=(), payment=(), usb=(), serial=()",
|
|
},
|
|
{
|
|
key: "Strict-Transport-Security",
|
|
value: "max-age=63072000; includeSubDomains; preload",
|
|
},
|
|
];
|
|
|
|
function isNextIntlExtractorDynamicImportWarning(warning) {
|
|
const message = typeof warning === "string" ? warning : warning?.message || "";
|
|
const resource = warning?.module?.resource || warning?.file || "";
|
|
const target = "next-intl/dist/esm/production/extractor/format/index.js";
|
|
return (
|
|
resource.includes(target) &&
|
|
(message.includes("import(t)") || message.includes("dependency is an expression"))
|
|
);
|
|
}
|
|
|
|
// OMNIROUTE_BUILD_PROFILE=minimal physically removes four optional privileged
|
|
// modules (MITM cert install, Zed keychain import, Cloud Sync, 9router
|
|
// installer) from the built bundle by aliasing them to feature-disabled stubs.
|
|
// The resulting artifact is intended to be published as `omniroute-secure`
|
|
// for security-sensitive environments. See docs/security/SOCKET_DEV_FINDINGS.md.
|
|
const isMinimalBuild = process.env.OMNIROUTE_BUILD_PROFILE === "minimal";
|
|
|
|
const minimalBuildAliases = isMinimalBuild
|
|
? {
|
|
"@/mitm/cert/install": "./src/mitm/cert/install.stub.ts",
|
|
"@/lib/zed-oauth/keychain-reader": "./src/lib/zed-oauth/keychain-reader.stub.ts",
|
|
"@/lib/cloudSync": "./src/lib/cloudSync.stub.ts",
|
|
"@/lib/services/installers/ninerouter": "./src/lib/services/installers/ninerouter.stub.ts",
|
|
}
|
|
: {};
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
distDir,
|
|
// Turbopack config: redirect native modules to stubs at build time
|
|
turbopack: {
|
|
root: projectRoot,
|
|
resolveAlias: {
|
|
// Point mitm/manager to a stub during build (native child_process/fs can't be bundled)
|
|
"@/mitm/manager": "./src/mitm/manager.stub.ts",
|
|
...minimalBuildAliases,
|
|
},
|
|
},
|
|
output: "standalone",
|
|
// OmniRoute is a proxy for AI APIs — request bodies routinely include
|
|
// multi-MB payloads (vision models, image edits, base64-encoded files,
|
|
// long chat histories with embedded images). Next.js's Server Action
|
|
// handler intercepts POSTs with multipart/form-data or
|
|
// x-www-form-urlencoded content-types and enforces a 1 MB cap that
|
|
// surfaces as a 413 with a confusing "Server Actions" hint, even on
|
|
// pure route handlers. 50 MB matches what most upstream LLM providers
|
|
// accept for image-bearing requests; tune via env if a deployment needs
|
|
// more.
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: process.env.OMNIROUTE_SERVER_ACTIONS_BODY_LIMIT || "50mb",
|
|
},
|
|
// Next.js proxy (middleware) has a default 10MB body clone limit. File
|
|
// uploads (OpenAI-compatible /v1/files) routinely exceed this. Match the
|
|
// 512 MB server-side cap; tune via env if needed.
|
|
proxyClientMaxBodySize: process.env.NEXT_PROXY_BODY_LIMIT || "512mb",
|
|
},
|
|
outputFileTracingRoot: projectRoot,
|
|
outputFileTracingIncludes: {
|
|
// Migration SQL and compression rule/filter JSON files are read via fs at
|
|
// runtime and are NOT always auto-traced by webpack/turbopack.
|
|
"/*": [
|
|
"./src/lib/db/migrations/**/*",
|
|
"./src/mitm/server.cjs",
|
|
"./open-sse/services/compression/engines/rtk/filters/**/*.json",
|
|
"./open-sse/services/compression/rules/**/*.json",
|
|
"./open-sse/lib/sha3_wasm_bg.wasm",
|
|
"./open-sse/lib/deepseek-pow-solver.cjs",
|
|
],
|
|
},
|
|
outputFileTracingExcludes: {
|
|
// Planning/task docs are not runtime assets and can break standalone copies
|
|
// when broad fs/path tracing pulls the whole repository into the NFT graph.
|
|
"/*": [
|
|
"./.git/**/*",
|
|
"./_tasks/**/*",
|
|
"./_references/**/*",
|
|
"./_ideia/**/*",
|
|
"./_mono_repo/**/*",
|
|
"./coverage/**/*",
|
|
"./test-results/**/*",
|
|
"./playwright-report/**/*",
|
|
"./app.__qa_backup/**/*",
|
|
"./tests/**/*",
|
|
"./logs/**/*",
|
|
],
|
|
},
|
|
serverExternalPackages: [
|
|
"pino",
|
|
"pino-pretty",
|
|
"thread-stream",
|
|
"pino-abstract-transport",
|
|
"better-sqlite3",
|
|
// sqlite-vec ships a native vec0.so loaded at runtime via createRequire().
|
|
// Turbopack otherwise tries to bundle the .so and fails with "Unknown module
|
|
// type"; externalizing it keeps the require at runtime (like better-sqlite3).
|
|
// See issue #3066.
|
|
"sqlite-vec",
|
|
"node-machine-id",
|
|
"keytar",
|
|
"wreq-js",
|
|
"zod",
|
|
"tls-client-node",
|
|
"koffi",
|
|
"tough-cookie",
|
|
"@ngrok/ngrok",
|
|
"@huggingface/transformers",
|
|
"child_process",
|
|
"fs",
|
|
"path",
|
|
"os",
|
|
"crypto",
|
|
"net",
|
|
"tls",
|
|
"http",
|
|
"https",
|
|
"stream",
|
|
"buffer",
|
|
"util",
|
|
"process",
|
|
],
|
|
transpilePackages: ["@omniroute/open-sse", "@lobehub/icons", "fumadocs-ui", "fumadocs-core"],
|
|
allowedDevOrigins: ["localhost", "127.0.0.1", "192.168.0.250"],
|
|
typescript: {
|
|
// TODO: Re-enable after fixing all sub-component useTranslations scope issues
|
|
ignoreBuildErrors: true,
|
|
},
|
|
webpack(config, { webpack }) {
|
|
config.ignoreWarnings = [
|
|
...(config.ignoreWarnings || []),
|
|
isNextIntlExtractorDynamicImportWarning,
|
|
];
|
|
config.optimization = config.optimization || {};
|
|
config.optimization.splitChunks = {
|
|
...config.optimization.splitChunks,
|
|
cacheGroups: {
|
|
...(config.optimization.splitChunks?.cacheGroups || {}),
|
|
recharts: {
|
|
test: /[\\/]node_modules[\\/]recharts[\\/]/,
|
|
name: "vendor-recharts",
|
|
chunks: "all",
|
|
priority: 20,
|
|
},
|
|
lobeIcons: {
|
|
test: /[\\/]node_modules[\\/]@lobehub[\\/]icons[\\/]/,
|
|
name: "vendor-lobe-icons",
|
|
chunks: "all",
|
|
priority: 20,
|
|
},
|
|
monaco: {
|
|
test: /[\\/]node_modules[\\/]monaco-editor[\\/]/,
|
|
name: "vendor-monaco",
|
|
chunks: "all",
|
|
priority: 20,
|
|
},
|
|
xyflow: {
|
|
test: /[\\/]node_modules[\\/]@xyflow[\\/]/,
|
|
name: "vendor-xyflow",
|
|
chunks: "all",
|
|
priority: 20,
|
|
},
|
|
mermaid: {
|
|
test: /[\\/]node_modules[\\/]mermaid[\\/]/,
|
|
name: "vendor-mermaid",
|
|
chunks: "all",
|
|
priority: 20,
|
|
},
|
|
},
|
|
};
|
|
|
|
if (isMinimalBuild) {
|
|
// Mirror the turbopack.resolveAlias entries for webpack-built artifacts.
|
|
// NormalModuleReplacementPlugin swaps the real module for a stub before
|
|
// webpack resolves it, so the privileged source files are never compiled
|
|
// into the standalone output.
|
|
const replacements = [
|
|
[/^@\/mitm\/cert\/install$/, "./src/mitm/cert/install.stub.ts"],
|
|
[/^@\/lib\/zed-oauth\/keychain-reader$/, "./src/lib/zed-oauth/keychain-reader.stub.ts"],
|
|
[/^@\/lib\/cloudSync$/, "./src/lib/cloudSync.stub.ts"],
|
|
[
|
|
/^@\/lib\/services\/installers\/ninerouter$/,
|
|
"./src/lib/services/installers/ninerouter.stub.ts",
|
|
],
|
|
];
|
|
for (const [pattern, stubPath] of replacements) {
|
|
config.plugins.push(
|
|
new webpack.NormalModuleReplacementPlugin(pattern, (resource) => {
|
|
resource.request = stubPath;
|
|
})
|
|
);
|
|
}
|
|
}
|
|
|
|
return config;
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: "/:path*",
|
|
headers: securityHeaders,
|
|
},
|
|
// G-10: allow OmniRoute's own dashboard to embed the 9Router UI via our reverse proxy.
|
|
// `frame-ancestors 'self'` overrides the global `frame-ancestors 'none'` only for this
|
|
// path. The route is already LOCAL_ONLY (routeGuard.ts) so remote origins cannot reach it.
|
|
{
|
|
source: "/dashboard/providers/services/:name/embed/:path*",
|
|
headers: [{ key: "Content-Security-Policy", value: "frame-ancestors 'self'" }],
|
|
},
|
|
];
|
|
},
|
|
|
|
async redirects() {
|
|
return [
|
|
// Dashboard routes
|
|
{
|
|
source: "/dashboard/skills",
|
|
destination: "/dashboard/omni-skills",
|
|
permanent: true,
|
|
},
|
|
// Architecture
|
|
{
|
|
source: "/docs/architecture",
|
|
destination: "/docs/architecture/architecture",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/authz-guide",
|
|
destination: "/docs/architecture/authz-guide",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/codebase-documentation",
|
|
destination: "/docs/architecture/codebase-documentation",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/repository-map",
|
|
destination: "/docs/architecture/repository-map",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/resilience-guide",
|
|
destination: "/docs/architecture/resilience-guide",
|
|
permanent: true,
|
|
},
|
|
// Guides
|
|
{ source: "/docs/docker-guide", destination: "/docs/guides/docker-guide", permanent: true },
|
|
{
|
|
source: "/docs/electron-guide",
|
|
destination: "/docs/guides/electron-guide",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/features", destination: "/docs/guides/features", permanent: true },
|
|
{ source: "/docs/i18n", destination: "/docs/guides/i18n", permanent: true },
|
|
{ source: "/docs/kiro-setup", destination: "/docs/guides/kiro-setup", permanent: true },
|
|
{ source: "/docs/pwa-guide", destination: "/docs/guides/pwa-guide", permanent: true },
|
|
{ source: "/docs/setup-guide", destination: "/docs/guides/setup-guide", permanent: true },
|
|
{ source: "/docs/termux-guide", destination: "/docs/guides/termux-guide", permanent: true },
|
|
{
|
|
source: "/docs/troubleshooting",
|
|
destination: "/docs/guides/troubleshooting",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/uninstall", destination: "/docs/guides/uninstall", permanent: true },
|
|
{ source: "/docs/user-guide", destination: "/docs/guides/user-guide", permanent: true },
|
|
// Reference
|
|
{
|
|
source: "/docs/api-reference",
|
|
destination: "/docs/reference/api-reference",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/cli-tools", destination: "/docs/reference/cli-tools", permanent: true },
|
|
{ source: "/docs/environment", destination: "/docs/reference/environment", permanent: true },
|
|
{ source: "/docs/free-tiers", destination: "/docs/reference/free-tiers", permanent: true },
|
|
{
|
|
source: "/docs/provider-reference",
|
|
destination: "/docs/reference/provider-reference",
|
|
permanent: true,
|
|
},
|
|
// Frameworks
|
|
{ source: "/docs/a2a-server", destination: "/docs/frameworks/a2a-server", permanent: true },
|
|
{
|
|
source: "/docs/agent-protocols-guide",
|
|
destination: "/docs/frameworks/agent-protocols-guide",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/cloud-agent", destination: "/docs/frameworks/cloud-agent", permanent: true },
|
|
{ source: "/docs/evals", destination: "/docs/frameworks/evals", permanent: true },
|
|
{
|
|
source: "/docs/gamification",
|
|
destination: "/docs/frameworks/gamification",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/mcp-server", destination: "/docs/frameworks/mcp-server", permanent: true },
|
|
{ source: "/docs/memory", destination: "/docs/frameworks/memory", permanent: true },
|
|
{ source: "/docs/opencode", destination: "/docs/frameworks/opencode", permanent: true },
|
|
{ source: "/docs/skills", destination: "/docs/frameworks/skills", permanent: true },
|
|
{ source: "/docs/webhooks", destination: "/docs/frameworks/webhooks", permanent: true },
|
|
// Routing
|
|
{ source: "/docs/auto-combo", destination: "/docs/routing/auto-combo", permanent: true },
|
|
{
|
|
source: "/docs/reasoning-replay",
|
|
destination: "/docs/routing/reasoning-replay",
|
|
permanent: true,
|
|
},
|
|
// Security
|
|
{ source: "/docs/cli-token", destination: "/docs/security/cli-token", permanent: true },
|
|
{
|
|
source: "/docs/cli-token-auth",
|
|
destination: "/docs/security/cli-token-auth",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/compliance", destination: "/docs/security/compliance", permanent: true },
|
|
{
|
|
source: "/docs/error-sanitization",
|
|
destination: "/docs/security/error-sanitization",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/guardrails", destination: "/docs/security/guardrails", permanent: true },
|
|
{ source: "/docs/public-creds", destination: "/docs/security/public-creds", permanent: true },
|
|
{
|
|
source: "/docs/route-guard-tiers",
|
|
destination: "/docs/security/route-guard-tiers",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/stealth-guide",
|
|
destination: "/docs/security/stealth-guide",
|
|
permanent: true,
|
|
},
|
|
// Compression
|
|
{
|
|
source: "/docs/compression-engines",
|
|
destination: "/docs/compression/compression-engines",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/compression-guide",
|
|
destination: "/docs/compression/compression-guide",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/compression-language-packs",
|
|
destination: "/docs/compression/compression-language-packs",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/compression-rules-format",
|
|
destination: "/docs/compression/compression-rules-format",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/rtk-compression",
|
|
destination: "/docs/compression/rtk-compression",
|
|
permanent: true,
|
|
},
|
|
// Ops
|
|
{ source: "/docs/coverage-plan", destination: "/docs/ops/coverage-plan", permanent: true },
|
|
{
|
|
source: "/docs/e2e-dashboard-shakedown-v3.8.0",
|
|
destination: "/docs/ops/e2e-dashboard-shakedown-v3.8.0",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/docs/fly-io-deployment-guide",
|
|
destination: "/docs/ops/fly-io-deployment-guide",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/proxy-guide", destination: "/docs/ops/proxy-guide", permanent: true },
|
|
{
|
|
source: "/docs/release-checklist",
|
|
destination: "/docs/ops/release-checklist",
|
|
permanent: true,
|
|
},
|
|
{ source: "/docs/sqlite-runtime", destination: "/docs/ops/sqlite-runtime", permanent: true },
|
|
{ source: "/docs/tunnels-guide", destination: "/docs/ops/tunnels-guide", permanent: true },
|
|
{
|
|
source: "/docs/vm-deployment-guide",
|
|
destination: "/docs/ops/vm-deployment-guide",
|
|
permanent: true,
|
|
},
|
|
// CLI Pages — Plano 14 (F9)
|
|
{ source: "/dashboard/cli-tools", destination: "/dashboard/cli-code", permanent: true },
|
|
{
|
|
source: "/dashboard/cli-tools/:path*",
|
|
destination: "/dashboard/cli-code/:path*",
|
|
permanent: true,
|
|
},
|
|
{ source: "/dashboard/agents", destination: "/dashboard/acp-agents", permanent: true },
|
|
{
|
|
source: "/dashboard/agents/:path*",
|
|
destination: "/dashboard/acp-agents/:path*",
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/chat/completions",
|
|
destination: "/api/v1/chat/completions",
|
|
},
|
|
{
|
|
source: "/responses",
|
|
destination: "/api/v1/responses",
|
|
},
|
|
{
|
|
source: "/responses/:path*",
|
|
destination: "/api/v1/responses/:path*",
|
|
},
|
|
{
|
|
source: "/models",
|
|
destination: "/api/v1/models",
|
|
},
|
|
{
|
|
source: "/v1/v1/:path*",
|
|
destination: "/api/v1/:path*",
|
|
},
|
|
{
|
|
source: "/v1/v1",
|
|
destination: "/api/v1",
|
|
},
|
|
{
|
|
source: "/codex/:path*",
|
|
destination: "/api/v1/responses",
|
|
},
|
|
{
|
|
source: "/v1/:path*",
|
|
destination: "/api/v1/:path*",
|
|
},
|
|
{
|
|
source: "/v1",
|
|
destination: "/api/v1",
|
|
},
|
|
{
|
|
source: "/v1beta/:path*",
|
|
destination: "/api/v1beta/:path*",
|
|
},
|
|
{
|
|
source: "/v1beta",
|
|
destination: "/api/v1beta",
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
const withMDX = createMDX();
|
|
|
|
export default withMDX(withNextIntl(nextConfig));
|