forked from diegosouzapw/OmniRoute
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.mjs
More file actions
545 lines (533 loc) · 18.4 KB
/
Copy pathnext.config.mjs
File metadata and controls
545 lines (533 loc) · 18.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
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",
compress: true,
productionBrowserSourceMaps: false,
// 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",
// PR-2 of diegosouzapw/OmniRoute#3932: tree-shake barrel re-exports so
// route bundles don't pull in 14 locale files, every lucide-react icon,
// or the full date-fns surface when only one helper is used.
optimizePackageImports: [
"lobehub/icons",
"@lobehub/icons",
"lucide-react",
"date-fns",
"lodash",
"lodash-es",
"material-symbols",
"next-intl",
"@omniroute/open-sse",
],
},
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,
},
// PR-2 of diegosouzapw/OmniRoute#3932: isolate the heavy long-tail
// vendor chunks that only some routes actually need, so dashboard
// pages don't pay for the docs bundle (or vice versa).
nextIntl: {
test: /[\\/]node_modules[\\/]next-intl[\\/]/,
name: "vendor-next-intl",
chunks: "all",
priority: 25,
},
fumadocs: {
test: /[\\/]node_modules[\\/](fumadocs-ui|fumadocs-core|fumadocs-mdx)[\\/]/,
name: "vendor-fumadocs",
chunks: "all",
priority: 20,
},
comboGraph: {
test: /[\\/]node_modules[\\/]@?dagre[\\/]|[\\/]node_modules[\\/]@?elkjs[\\/]/,
name: "vendor-combo-graph",
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));