vinext 0.0.21 → 0.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/dist/build/static-export.d.ts.map +1 -1
  2. package/dist/build/static-export.js +9 -7
  3. package/dist/build/static-export.js.map +1 -1
  4. package/dist/config/next-config.d.ts +4 -1
  5. package/dist/config/next-config.d.ts.map +1 -1
  6. package/dist/config/next-config.js +10 -5
  7. package/dist/config/next-config.js.map +1 -1
  8. package/dist/deploy.d.ts.map +1 -1
  9. package/dist/deploy.js +17 -4
  10. package/dist/deploy.js.map +1 -1
  11. package/dist/index.d.ts +25 -0
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.js +381 -38
  14. package/dist/index.js.map +1 -1
  15. package/dist/routing/app-router.d.ts +2 -1
  16. package/dist/routing/app-router.d.ts.map +1 -1
  17. package/dist/routing/app-router.js +74 -107
  18. package/dist/routing/app-router.js.map +1 -1
  19. package/dist/routing/file-matcher.d.ts +24 -0
  20. package/dist/routing/file-matcher.d.ts.map +1 -0
  21. package/dist/routing/file-matcher.js +75 -0
  22. package/dist/routing/file-matcher.js.map +1 -0
  23. package/dist/routing/pages-router.d.ts +3 -2
  24. package/dist/routing/pages-router.d.ts.map +1 -1
  25. package/dist/routing/pages-router.js +25 -44
  26. package/dist/routing/pages-router.js.map +1 -1
  27. package/dist/routing/utils.d.ts +25 -0
  28. package/dist/routing/utils.d.ts.map +1 -0
  29. package/dist/routing/utils.js +70 -0
  30. package/dist/routing/utils.js.map +1 -0
  31. package/dist/server/app-dev-server.d.ts.map +1 -1
  32. package/dist/server/app-dev-server.js +123 -47
  33. package/dist/server/app-dev-server.js.map +1 -1
  34. package/dist/server/dev-server.d.ts +2 -1
  35. package/dist/server/dev-server.d.ts.map +1 -1
  36. package/dist/server/dev-server.js +93 -18
  37. package/dist/server/dev-server.js.map +1 -1
  38. package/dist/server/prod-server.d.ts.map +1 -1
  39. package/dist/server/prod-server.js +33 -2
  40. package/dist/server/prod-server.js.map +1 -1
  41. package/dist/server/request-log.d.ts +34 -0
  42. package/dist/server/request-log.d.ts.map +1 -0
  43. package/dist/server/request-log.js +65 -0
  44. package/dist/server/request-log.js.map +1 -0
  45. package/dist/shims/cache-runtime.d.ts.map +1 -1
  46. package/dist/shims/cache-runtime.js +5 -1
  47. package/dist/shims/cache-runtime.js.map +1 -1
  48. package/dist/shims/cache.d.ts +7 -1
  49. package/dist/shims/cache.d.ts.map +1 -1
  50. package/dist/shims/cache.js +30 -5
  51. package/dist/shims/cache.js.map +1 -1
  52. package/dist/shims/head.d.ts +11 -0
  53. package/dist/shims/head.d.ts.map +1 -1
  54. package/dist/shims/head.js +21 -0
  55. package/dist/shims/head.js.map +1 -1
  56. package/dist/shims/headers.d.ts +8 -0
  57. package/dist/shims/headers.d.ts.map +1 -1
  58. package/dist/shims/headers.js +41 -0
  59. package/dist/shims/headers.js.map +1 -1
  60. package/dist/shims/metadata.d.ts +1 -0
  61. package/dist/shims/metadata.d.ts.map +1 -1
  62. package/dist/shims/metadata.js +5 -1
  63. package/dist/shims/metadata.js.map +1 -1
  64. package/dist/shims/script.d.ts.map +1 -1
  65. package/dist/shims/script.js +7 -1
  66. package/dist/shims/script.js.map +1 -1
  67. package/dist/shims/server.d.ts.map +1 -1
  68. package/dist/shims/server.js +2 -1
  69. package/dist/shims/server.js.map +1 -1
  70. package/package.json +1 -1
@@ -2,6 +2,7 @@ import type { ViteDevServer } from "vite";
2
2
  import type { IncomingMessage, ServerResponse } from "node:http";
3
3
  import type { Route } from "../routing/pages-router.js";
4
4
  import type { NextI18nConfig } from "../config/next-config.js";
5
+ import { type ValidFileMatcher } from "../routing/file-matcher.js";
5
6
  /**
6
7
  * Extract locale prefix from a URL path.
7
8
  * e.g. /fr/about -> { locale: "fr", url: "/about", hadPrefix: true }
@@ -32,7 +33,7 @@ export declare function parseCookieLocale(req: IncomingMessage, i18nConfig: Next
32
33
  * 4. Render the component to HTML
33
34
  * 5. Wrap in _document shell and send response
34
35
  */
35
- export declare function createSSRHandler(server: ViteDevServer, routes: Route[], pagesDir: string, i18nConfig?: NextI18nConfig | null): (req: IncomingMessage, res: ServerResponse, url: string,
36
+ export declare function createSSRHandler(server: ViteDevServer, routes: Route[], pagesDir: string, i18nConfig?: NextI18nConfig | null, fileMatcher?: ValidFileMatcher): (req: IncomingMessage, res: ServerResponse, url: string,
36
37
  /** Status code override — propagated from middleware rewrite status. */
37
38
  statusCode?: number) => Promise<void>;
38
39
  //# sourceMappingURL=dev-server.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dev-server.d.ts","sourceRoot":"","sources":["../../src/server/dev-server.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,MAAM,CAAC;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AACjE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAC;AAExD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAmK/D;;;;GAIG;AACH,wBAAgB,oBAAoB,CAClC,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,cAAc,GACzB;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,OAAO,CAAA;CAAE,CAYrD;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CACrC,GAAG,EAAE,eAAe,EACpB,UAAU,EAAE,cAAc,GACzB,MAAM,GAAG,IAAI,CA4Bf;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAC/B,GAAG,EAAE,eAAe,EACpB,UAAU,EAAE,cAAc,GACzB,MAAM,GAAG,IAAI,CAiBf;AAED;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,MAAM,EAAE,aAAa,EACrB,MAAM,EAAE,KAAK,EAAE,EACf,QAAQ,EAAE,MAAM,EAChB,UAAU,CAAC,EAAE,cAAc,GAAG,IAAI,IAGhC,KAAK,eAAe,EACpB,KAAK,cAAc,EACnB,KAAK,MAAM;AACX,wEAAwE;AACxE,aAAa,MAAM,KAClB,OAAO,CAAC,IAAI,CAAC,CAuhBjB"}
1
+ {"version":3,"file":"dev-server.d.ts","sourceRoot":"","sources":["../../src/server/dev-server.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,MAAM,CAAC;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AACjE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAC;AAExD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AA0B/D,OAAO,EAA0B,KAAK,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAoJ3F;;;;GAIG;AACH,wBAAgB,oBAAoB,CAClC,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,cAAc,GACzB;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,OAAO,CAAA;CAAE,CAYrD;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CACrC,GAAG,EAAE,eAAe,EACpB,UAAU,EAAE,cAAc,GACzB,MAAM,GAAG,IAAI,CA4Bf;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAC/B,GAAG,EAAE,eAAe,EACpB,UAAU,EAAE,cAAc,GACzB,MAAM,GAAG,IAAI,CAiBf;AAED;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,MAAM,EAAE,aAAa,EACrB,MAAM,EAAE,KAAK,EAAE,EACf,QAAQ,EAAE,MAAM,EAChB,UAAU,CAAC,EAAE,cAAc,GAAG,IAAI,EAClC,WAAW,CAAC,EAAE,gBAAgB,IAI5B,KAAK,eAAe,EACpB,KAAK,cAAc,EACnB,KAAK,MAAM;AACX,wEAAwE;AACxE,aAAa,MAAM,KAClB,OAAO,CAAC,IAAI,CAAC,CAslBjB"}
@@ -14,7 +14,8 @@ import path from "node:path";
14
14
  import fs from "node:fs";
15
15
  import React from "react";
16
16
  import { renderToReadableStream } from "react-dom/server.edge";
17
- const PAGE_EXTENSIONS = [".tsx", ".ts", ".jsx", ".js"];
17
+ import { logRequest, now } from "./request-log.js";
18
+ import { createValidFileMatcher } from "../routing/file-matcher.js";
18
19
  /**
19
20
  * Render a React element to a string using renderToReadableStream.
20
21
  *
@@ -88,12 +89,24 @@ async function streamPageToResponse(res, element, options) {
88
89
  const markerIdx = transformedShell.indexOf(STREAM_BODY_MARKER);
89
90
  const prefix = transformedShell.slice(0, markerIdx);
90
91
  const suffix = transformedShell.slice(markerIdx + STREAM_BODY_MARKER.length);
91
- // Send headers and start streaming
92
+ // Send headers and start streaming.
93
+ // Set array-valued headers (e.g. Set-Cookie from gSSP) via setHeader()
94
+ // before writeHead(), since writeHead()'s headers object doesn't handle
95
+ // arrays portably. Then writeHead() merges with any setHeader() calls.
92
96
  const headers = {
93
97
  "Content-Type": "text/html",
94
98
  "Transfer-Encoding": "chunked",
95
- ...extraHeaders,
96
99
  };
100
+ if (extraHeaders) {
101
+ for (const [key, val] of Object.entries(extraHeaders)) {
102
+ if (Array.isArray(val)) {
103
+ res.setHeader(key, val);
104
+ }
105
+ else {
106
+ headers[key] = val;
107
+ }
108
+ }
109
+ }
97
110
  res.writeHead(statusCode, headers);
98
111
  // Write the document prefix (head, opening body)
99
112
  res.write(prefix);
@@ -113,9 +126,9 @@ async function streamPageToResponse(res, element, options) {
113
126
  // Write the document suffix (closing tags, scripts)
114
127
  res.end(suffix);
115
128
  }
116
- /** Check if a file exists with any page extension (tsx, ts, jsx, js). */
117
- function findFileWithExtensions(basePath) {
118
- return PAGE_EXTENSIONS.some((ext) => fs.existsSync(basePath + ext));
129
+ /** Check if a file exists with any configured page extension. */
130
+ function findFileWithExtensions(basePath, matcher) {
131
+ return matcher.dottedExtensions.some((ext) => fs.existsSync(basePath + ext));
119
132
  }
120
133
  /**
121
134
  * Extract locale prefix from a URL path.
@@ -197,10 +210,31 @@ export function parseCookieLocale(req, i18nConfig) {
197
210
  * 4. Render the component to HTML
198
211
  * 5. Wrap in _document shell and send response
199
212
  */
200
- export function createSSRHandler(server, routes, pagesDir, i18nConfig) {
213
+ export function createSSRHandler(server, routes, pagesDir, i18nConfig, fileMatcher) {
214
+ const matcher = fileMatcher ?? createValidFileMatcher();
201
215
  return async (req, res, url,
202
216
  /** Status code override — propagated from middleware rewrite status. */
203
217
  statusCode) => {
218
+ const _reqStart = now();
219
+ let _compileEnd;
220
+ let _renderEnd;
221
+ res.on("finish", () => {
222
+ const totalMs = now() - _reqStart;
223
+ const compileMs = _compileEnd !== undefined ? Math.round(_compileEnd - _reqStart) : undefined;
224
+ // renderMs = time from end of compile to end of stream.
225
+ // _renderEnd is set just after streamPageToResponse resolves.
226
+ const renderMs = _renderEnd !== undefined && _compileEnd !== undefined
227
+ ? Math.round(_renderEnd - _compileEnd)
228
+ : undefined;
229
+ logRequest({
230
+ method: req.method ?? "GET",
231
+ url,
232
+ status: res.statusCode,
233
+ totalMs,
234
+ compileMs,
235
+ renderMs,
236
+ });
237
+ });
204
238
  // --- i18n: extract locale from URL prefix ---
205
239
  let locale;
206
240
  let localeStrippedUrl = url;
@@ -233,7 +267,7 @@ export function createSSRHandler(server, routes, pagesDir, i18nConfig) {
233
267
  const match = matchRoute(localeStrippedUrl, routes);
234
268
  if (!match) {
235
269
  // No route matched — try to render custom 404 page
236
- await renderErrorPage(server, req, res, url, pagesDir, 404);
270
+ await renderErrorPage(server, req, res, url, pagesDir, 404, undefined, matcher);
237
271
  return;
238
272
  }
239
273
  const { route, params } = match;
@@ -263,6 +297,8 @@ export function createSSRHandler(server, routes, pagesDir, i18nConfig) {
263
297
  // Load the page module through Vite's SSR pipeline
264
298
  // This gives us HMR and transform support for free
265
299
  const pageModule = await server.ssrLoadModule(route.filePath);
300
+ // Mark end of compile phase: everything from here is rendering.
301
+ _compileEnd = now();
266
302
  // Get the page component (default export)
267
303
  const PageComponent = pageModule.default;
268
304
  if (!PageComponent) {
@@ -295,7 +331,7 @@ export function createSSRHandler(server, routes, pagesDir, i18nConfig) {
295
331
  });
296
332
  });
297
333
  if (!isValidPath) {
298
- await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext);
334
+ await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext, matcher);
299
335
  return;
300
336
  }
301
337
  }
@@ -305,7 +341,14 @@ export function createSSRHandler(server, routes, pagesDir, i18nConfig) {
305
341
  // The difference is that fallback:true could serve a shell first,
306
342
  // but since we always have data available via SSR, we render fully.
307
343
  }
344
+ // Headers set by getServerSideProps for explicit forwarding to
345
+ // streamPageToResponse. Without this, they survive only through
346
+ // Node.js writeHead() implicitly merging setHeader() calls, which
347
+ // would silently break if streamPageToResponse is refactored.
348
+ const gsspExtraHeaders = {};
308
349
  if (typeof pageModule.getServerSideProps === "function") {
350
+ // Snapshot existing headers so we can detect what gSSP adds.
351
+ const headersBeforeGSSP = new Set(Object.keys(res.getHeaders()));
309
352
  const context = {
310
353
  params,
311
354
  req,
@@ -317,6 +360,16 @@ export function createSSRHandler(server, routes, pagesDir, i18nConfig) {
317
360
  defaultLocale: i18nConfig?.defaultLocale,
318
361
  };
319
362
  const result = await pageModule.getServerSideProps(context);
363
+ // If gSSP called res.end() directly (short-circuit pattern),
364
+ // the response is already sent. Do not continue rendering.
365
+ // Note: middleware headers are already on `res` (middleware runs
366
+ // before this handler in the connect chain), so they are included
367
+ // in the short-circuited response. The prod path achieves the same
368
+ // result via the worker entry merging middleware headers after
369
+ // renderPage() returns.
370
+ if (res.writableEnded) {
371
+ return;
372
+ }
320
373
  if (result && "props" in result) {
321
374
  pageProps = result.props;
322
375
  }
@@ -339,6 +392,25 @@ export function createSSRHandler(server, routes, pagesDir, i18nConfig) {
339
392
  await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext);
340
393
  return;
341
394
  }
395
+ // Preserve any status code set by gSSP (e.g. res.statusCode = 201).
396
+ // This takes precedence over the default 200 but not over middleware status.
397
+ if (!statusCode && res.statusCode !== 200) {
398
+ statusCode = res.statusCode;
399
+ }
400
+ // Capture headers newly set by gSSP and forward them explicitly.
401
+ // Remove from `res` to prevent duplication when writeHead() merges.
402
+ const headersAfterGSSP = res.getHeaders();
403
+ for (const [key, val] of Object.entries(headersAfterGSSP)) {
404
+ if (headersBeforeGSSP.has(key) || val == null)
405
+ continue;
406
+ res.removeHeader(key);
407
+ if (Array.isArray(val)) {
408
+ gsspExtraHeaders[key] = val.map(String);
409
+ }
410
+ else {
411
+ gsspExtraHeaders[key] = String(val);
412
+ }
413
+ }
342
414
  }
343
415
  // Collect font preloads early so ISR cached responses can include
344
416
  // the Link header (font preloads are module-level state that persists
@@ -451,7 +523,7 @@ export function createSSRHandler(server, routes, pagesDir, i18nConfig) {
451
523
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
452
524
  let AppComponent = null;
453
525
  const appPath = path.join(pagesDir, "_app");
454
- if (findFileWithExtensions(appPath)) {
526
+ if (findFileWithExtensions(appPath, matcher)) {
455
527
  try {
456
528
  const appModule = await server.ssrLoadModule(appPath);
457
529
  AppComponent = appModule.default ?? null;
@@ -595,7 +667,7 @@ hydrate();
595
667
  // Try to load custom _document.tsx
596
668
  const docPath = path.join(pagesDir, "_document");
597
669
  let DocumentComponent = null;
598
- if (findFileWithExtensions(docPath)) {
670
+ if (findFileWithExtensions(docPath, matcher)) {
599
671
  try {
600
672
  const docModule = await server.ssrLoadModule(docPath);
601
673
  DocumentComponent = docModule.default ?? null;
@@ -605,8 +677,9 @@ hydrate();
605
677
  }
606
678
  }
607
679
  const allScripts = `${nextDataScript}\n ${hydrationScript}`;
608
- // Build cache headers for ISR responses
609
- const extraHeaders = {};
680
+ // Build response headers: start with gSSP headers, then layer on
681
+ // ISR and font preload headers (which take precedence).
682
+ const extraHeaders = { ...gsspExtraHeaders };
610
683
  if (isrRevalidateSeconds) {
611
684
  extraHeaders["Cache-Control"] = `s-maxage=${isrRevalidateSeconds}, stale-while-revalidate`;
612
685
  extraHeaders["X-Vinext-Cache"] = "MISS";
@@ -636,6 +709,7 @@ hydrate();
636
709
  ? headShim.getSSRHeadHTML()
637
710
  : "",
638
711
  });
712
+ _renderEnd = now();
639
713
  // Clear SSR context after rendering
640
714
  if (typeof routerShim.setSSRContext === "function") {
641
715
  routerShim.setSSRContext(null);
@@ -669,7 +743,7 @@ hydrate();
669
743
  }, { routerKind: "Pages Router", routePath: route.pattern, routeType: "render" }).catch(() => { });
670
744
  // Try to render custom 500 error page
671
745
  try {
672
- await renderErrorPage(server, req, res, url, pagesDir, 500);
746
+ await renderErrorPage(server, req, res, url, pagesDir, 500, undefined, matcher);
673
747
  }
674
748
  catch (fallbackErr) {
675
749
  // If error page itself fails, fall back to plain text.
@@ -698,7 +772,8 @@ hydrate();
698
772
  * - 500: pages/500.tsx -> pages/_error.tsx -> default
699
773
  * - other: pages/_error.tsx -> default
700
774
  */
701
- async function renderErrorPage(server, _req, res, url, pagesDir, statusCode, wrapWithRouterContext) {
775
+ async function renderErrorPage(server, _req, res, url, pagesDir, statusCode, wrapWithRouterContext, fileMatcher) {
776
+ const matcher = fileMatcher ?? createValidFileMatcher();
702
777
  // Try specific status page first, then _error, then fallback
703
778
  const candidates = statusCode === 404
704
779
  ? ["404", "_error"]
@@ -708,7 +783,7 @@ async function renderErrorPage(server, _req, res, url, pagesDir, statusCode, wra
708
783
  for (const candidate of candidates) {
709
784
  try {
710
785
  const candidatePath = path.join(pagesDir, candidate);
711
- if (!findFileWithExtensions(candidatePath))
786
+ if (!findFileWithExtensions(candidatePath, matcher))
712
787
  continue;
713
788
  const errorModule = await server.ssrLoadModule(candidatePath);
714
789
  const ErrorComponent = errorModule.default;
@@ -717,7 +792,7 @@ async function renderErrorPage(server, _req, res, url, pagesDir, statusCode, wra
717
792
  // Try to load _app.tsx to wrap the error page
718
793
  let AppComponent = null;
719
794
  const appPathErr = path.join(pagesDir, "_app");
720
- if (findFileWithExtensions(appPathErr)) {
795
+ if (findFileWithExtensions(appPathErr, matcher)) {
721
796
  try {
722
797
  const appModule = await server.ssrLoadModule(appPathErr);
723
798
  AppComponent = appModule.default ?? null;
@@ -758,7 +833,7 @@ async function renderErrorPage(server, _req, res, url, pagesDir, statusCode, wra
758
833
  let html;
759
834
  let DocumentComponent = null;
760
835
  const docPathErr = path.join(pagesDir, "_document");
761
- if (findFileWithExtensions(docPathErr)) {
836
+ if (findFileWithExtensions(docPathErr, matcher)) {
762
837
  try {
763
838
  const docModule = await server.ssrLoadModule(docPathErr);
764
839
  DocumentComponent = docModule.default ?? null;
@@ -1 +1 @@
1
- {"version":3,"file":"dev-server.js","sourceRoot":"","sources":["../../src/server/dev-server.ts"],"names":[],"mappings":"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","sourcesContent":["import type { ViteDevServer } from \"vite\";\nimport type { IncomingMessage, ServerResponse } from \"node:http\";\nimport type { Route } from \"../routing/pages-router.js\";\nimport { matchRoute, patternToNextFormat } from \"../routing/pages-router.js\";\nimport type { NextI18nConfig } from \"../config/next-config.js\";\nimport {\n isrGet,\n isrSet,\n isrCacheKey,\n buildPagesCacheValue,\n triggerBackgroundRegeneration,\n setRevalidateDuration,\n getRevalidateDuration,\n} from \"./isr-cache.js\";\nimport type { CachedPagesValue } from \"../shims/cache.js\";\nimport { runWithFetchCache } from \"../shims/fetch-cache.js\";\nimport { _runWithCacheState } from \"../shims/cache.js\";\nimport { runWithPrivateCache } from \"../shims/cache-runtime.js\";\n// Import server-only state modules to register ALS-backed accessors.\n// These modules must be imported before any rendering occurs.\nimport { runWithRouterState } from \"../shims/router-state.js\";\nimport { runWithHeadState } from \"../shims/head-state.js\";\nimport { reportRequestError } from \"./instrumentation.js\";\nimport { safeJsonStringify } from \"./html.js\";\nimport { parseQueryString as parseQuery } from \"../utils/query.js\";\nimport path from \"node:path\";\nimport fs from \"node:fs\";\nimport React from \"react\";\nimport { renderToReadableStream } from \"react-dom/server.edge\";\n\nconst PAGE_EXTENSIONS = [\".tsx\", \".ts\", \".jsx\", \".js\"];\n\n/**\n * Render a React element to a string using renderToReadableStream.\n *\n * Uses the edge-compatible Web Streams API. Waits for all Suspense\n * boundaries to resolve via stream.allReady before collecting output.\n * Used for _document rendering and error pages (small, non-streaming).\n */\nasync function renderToStringAsync(element: React.ReactElement): Promise<string> {\n const stream = await renderToReadableStream(element);\n await stream.allReady;\n return new Response(stream).text();\n}\n\n/** Body placeholder used to split the document shell for streaming. */\nconst STREAM_BODY_MARKER = \"<!--VINEXT_STREAM_BODY-->\";\n\n/**\n * Stream a Pages Router page response using progressive SSR.\n *\n * Sends the HTML shell (head, layout, Suspense fallbacks) immediately\n * when the React shell is ready, then streams Suspense content as it\n * resolves. This gives the browser content to render while slow data\n * loads are still in flight.\n *\n * `__NEXT_DATA__` and the hydration script are appended after the body\n * stream completes (the data is known before rendering starts, but\n * deferring them reduces TTFB and lets the browser start parsing the\n * shell sooner).\n */\nasync function streamPageToResponse(\n res: ServerResponse,\n element: React.ReactElement,\n options: {\n url: string;\n server: ViteDevServer;\n fontHeadHTML: string;\n scripts: string;\n DocumentComponent: React.ComponentType | null;\n statusCode?: number;\n extraHeaders?: Record<string, string>;\n /** Called after renderToReadableStream resolves (shell ready) to collect head HTML */\n getHeadHTML: () => string;\n },\n): Promise<void> {\n const {\n url,\n server,\n fontHeadHTML,\n scripts,\n DocumentComponent,\n statusCode = 200,\n extraHeaders,\n getHeadHTML,\n } = options;\n\n // Start the React body stream FIRST — the promise resolves when the\n // shell is ready (synchronous content outside Suspense boundaries).\n // This triggers the render which populates <Head> tags.\n const bodyStream = await renderToReadableStream(element);\n\n // Now that the shell has rendered, collect head HTML\n const headHTML = getHeadHTML();\n\n // Build the document shell with a placeholder for the body\n let shellTemplate: string;\n\n if (DocumentComponent) {\n const docElement = React.createElement(DocumentComponent);\n let docHtml = await renderToStringAsync(docElement);\n // Replace __NEXT_MAIN__ with our stream marker\n docHtml = docHtml.replace(\"__NEXT_MAIN__\", STREAM_BODY_MARKER);\n // Inject head tags\n if (headHTML || fontHeadHTML) {\n docHtml = docHtml.replace(\"</head>\", ` ${fontHeadHTML}${headHTML}\\n</head>`);\n }\n // Inject scripts: replace placeholder or append before </body>\n docHtml = docHtml.replace(\"<!-- __NEXT_SCRIPTS__ -->\", scripts);\n if (!docHtml.includes(\"__NEXT_DATA__\")) {\n docHtml = docHtml.replace(\"</body>\", ` ${scripts}\\n</body>`);\n }\n shellTemplate = docHtml;\n } else {\n shellTemplate = `<!DOCTYPE html>\n<html>\n<head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n ${fontHeadHTML}${headHTML}\n</head>\n<body>\n <div id=\"__next\">${STREAM_BODY_MARKER}</div>\n ${scripts}\n</body>\n</html>`;\n }\n\n // Apply Vite's HTML transforms (injects HMR client, etc.) on the full\n // shell template, then split at the body marker.\n const transformedShell = await server.transformIndexHtml(url, shellTemplate);\n const markerIdx = transformedShell.indexOf(STREAM_BODY_MARKER);\n const prefix = transformedShell.slice(0, markerIdx);\n const suffix = transformedShell.slice(markerIdx + STREAM_BODY_MARKER.length);\n\n // Send headers and start streaming\n const headers: Record<string, string> = {\n \"Content-Type\": \"text/html\",\n \"Transfer-Encoding\": \"chunked\",\n ...extraHeaders,\n };\n res.writeHead(statusCode, headers);\n\n // Write the document prefix (head, opening body)\n res.write(prefix);\n\n // Pipe the React body stream through (Suspense content streams progressively)\n const reader = bodyStream.getReader();\n try {\n for (;;) {\n const { done, value } = await reader.read();\n if (done) break;\n res.write(value);\n }\n } finally {\n reader.releaseLock();\n }\n\n // Write the document suffix (closing tags, scripts)\n res.end(suffix);\n}\n\n/** Check if a file exists with any page extension (tsx, ts, jsx, js). */\nfunction findFileWithExtensions(basePath: string): boolean {\n return PAGE_EXTENSIONS.some((ext) => fs.existsSync(basePath + ext));\n}\n\n/**\n * Extract locale prefix from a URL path.\n * e.g. /fr/about -> { locale: \"fr\", url: \"/about\", hadPrefix: true }\n * /about -> { locale: \"en\", url: \"/about\", hadPrefix: false } (defaultLocale)\n */\nexport function extractLocaleFromUrl(\n url: string,\n i18nConfig: NextI18nConfig,\n): { locale: string; url: string; hadPrefix: boolean } {\n const pathname = url.split(\"?\")[0];\n const parts = pathname.split(\"/\").filter(Boolean);\n const query = url.includes(\"?\") ? url.slice(url.indexOf(\"?\")) : \"\";\n\n if (parts.length > 0 && i18nConfig.locales.includes(parts[0])) {\n const locale = parts[0];\n const rest = \"/\" + parts.slice(1).join(\"/\");\n return { locale, url: (rest || \"/\") + query, hadPrefix: true };\n }\n\n return { locale: i18nConfig.defaultLocale, url, hadPrefix: false };\n}\n\n/**\n * Detect the preferred locale from the Accept-Language header.\n * Returns the best matching locale or null.\n */\nexport function detectLocaleFromHeaders(\n req: IncomingMessage,\n i18nConfig: NextI18nConfig,\n): string | null {\n const acceptLang = req.headers[\"accept-language\"];\n if (!acceptLang) return null;\n\n // Parse Accept-Language: en-US,en;q=0.9,fr;q=0.8\n const langs = acceptLang\n .split(\",\")\n .map((part) => {\n const [lang, qPart] = part.trim().split(\";\");\n const q = qPart ? parseFloat(qPart.replace(\"q=\", \"\")) : 1;\n return { lang: lang.trim().toLowerCase(), q };\n })\n .sort((a, b) => b.q - a.q);\n\n for (const { lang } of langs) {\n // Exact match\n const exactMatch = i18nConfig.locales.find((l) => l.toLowerCase() === lang);\n if (exactMatch) return exactMatch;\n\n // Prefix match (e.g. \"en-US\" matches \"en\")\n const prefix = lang.split(\"-\")[0];\n const prefixMatch = i18nConfig.locales.find(\n (l) => l.toLowerCase() === prefix || l.toLowerCase().startsWith(prefix + \"-\"),\n );\n if (prefixMatch) return prefixMatch;\n }\n\n return null;\n}\n\n/**\n * Parse the NEXT_LOCALE cookie from a request.\n * Returns the cookie value if it matches a configured locale, otherwise null.\n */\nexport function parseCookieLocale(\n req: IncomingMessage,\n i18nConfig: NextI18nConfig,\n): string | null {\n const cookieHeader = req.headers.cookie;\n if (!cookieHeader) return null;\n\n // Simple cookie parsing — find NEXT_LOCALE=value\n const match = cookieHeader.match(/(?:^|;\\s*)NEXT_LOCALE=([^;]*)/);\n if (!match) return null;\n\n let value: string;\n try {\n value = decodeURIComponent(match[1].trim());\n } catch {\n return null;\n }\n // Only return if it's a valid configured locale\n if (i18nConfig.locales.includes(value)) return value;\n return null;\n}\n\n/**\n * Create an SSR request handler for the Pages Router.\n *\n * For each request:\n * 1. Match the URL against discovered routes\n * 2. Load the page module via Vite's SSR module loader\n * 3. Call getServerSideProps/getStaticProps if present\n * 4. Render the component to HTML\n * 5. Wrap in _document shell and send response\n */\nexport function createSSRHandler(\n server: ViteDevServer,\n routes: Route[],\n pagesDir: string,\n i18nConfig?: NextI18nConfig | null,\n) {\n return async (\n req: IncomingMessage,\n res: ServerResponse,\n url: string,\n /** Status code override — propagated from middleware rewrite status. */\n statusCode?: number,\n ): Promise<void> => {\n // --- i18n: extract locale from URL prefix ---\n let locale: string | undefined;\n let localeStrippedUrl = url;\n\n if (i18nConfig) {\n const parsed = extractLocaleFromUrl(url, i18nConfig);\n locale = parsed.locale;\n localeStrippedUrl = parsed.url;\n\n // If no locale prefix, check NEXT_LOCALE cookie first, then Accept-Language\n if (!parsed.hadPrefix) {\n const cookieLocale = parseCookieLocale(req, i18nConfig);\n if (cookieLocale && cookieLocale !== i18nConfig.defaultLocale) {\n // NEXT_LOCALE cookie overrides Accept-Language — redirect to cookie locale\n const redirectUrl = `/${cookieLocale}${url === \"/\" ? \"\" : url}`;\n res.writeHead(307, { Location: redirectUrl });\n res.end();\n return;\n }\n // If no cookie or cookie matches default, fall through to Accept-Language detection\n if (!cookieLocale && i18nConfig.localeDetection !== false) {\n const detectedLocale = detectLocaleFromHeaders(req, i18nConfig);\n if (detectedLocale && detectedLocale !== i18nConfig.defaultLocale) {\n const redirectUrl = `/${detectedLocale}${url === \"/\" ? \"\" : url}`;\n res.writeHead(307, { Location: redirectUrl });\n res.end();\n return;\n }\n }\n }\n }\n\n const match = matchRoute(localeStrippedUrl, routes);\n\n if (!match) {\n // No route matched — try to render custom 404 page\n await renderErrorPage(server, req, res, url, pagesDir, 404);\n return;\n }\n\n const { route, params } = match;\n\n // Wrap the entire request in nested AsyncLocalStorage.run() scopes to\n // ensure per-request isolation for all state modules.\n return runWithRouterState(() =>\n runWithHeadState(() =>\n _runWithCacheState(() =>\n runWithPrivateCache(() =>\n runWithFetchCache(async () => {\n try {\n // Set SSR context for the router shim so useRouter() returns\n // the correct URL and params during server-side rendering.\n const routerShim = await server.ssrLoadModule(\"next/router\");\n if (typeof routerShim.setSSRContext === \"function\") {\n routerShim.setSSRContext({\n pathname: localeStrippedUrl.split(\"?\")[0],\n query: { ...params, ...parseQuery(url) },\n asPath: url,\n locale: locale ?? i18nConfig?.defaultLocale,\n locales: i18nConfig?.locales,\n defaultLocale: i18nConfig?.defaultLocale,\n });\n }\n\n // Set globalThis locale info for Link component locale prop support during SSR\n if (i18nConfig) {\n (globalThis as any).__VINEXT_LOCALE__ = locale ?? i18nConfig.defaultLocale;\n (globalThis as any).__VINEXT_LOCALES__ = i18nConfig.locales;\n (globalThis as any).__VINEXT_DEFAULT_LOCALE__ = i18nConfig.defaultLocale;\n }\n\n // Load the page module through Vite's SSR pipeline\n // This gives us HMR and transform support for free\n const pageModule = await server.ssrLoadModule(route.filePath);\n\n // Get the page component (default export)\n const PageComponent = pageModule.default;\n if (!PageComponent) {\n console.error(`[vinext] Page ${route.filePath} has no default export`);\n res.statusCode = 500;\n res.end(\"Page has no default export\");\n return;\n }\n\n // Collect page props via data fetching methods\n let pageProps: Record<string, unknown> = {};\n let isrRevalidateSeconds: number | null = null;\n\n // Handle getStaticPaths for dynamic routes: validate the path\n // and respect fallback: false (return 404 for unlisted paths).\n if (typeof pageModule.getStaticPaths === \"function\" && route.isDynamic) {\n const pathsResult = await pageModule.getStaticPaths({\n locales: i18nConfig?.locales ?? [],\n defaultLocale: i18nConfig?.defaultLocale ?? \"\",\n });\n const fallback = pathsResult?.fallback ?? false;\n\n if (fallback === false) {\n // Only allow paths explicitly listed in getStaticPaths\n const paths: Array<{ params: Record<string, string | string[]> }> =\n pathsResult?.paths ?? [];\n const isValidPath = paths.some((p: { params: Record<string, string | string[]> }) => {\n return Object.entries(p.params).every(([key, val]) => {\n const actual = params[key];\n if (Array.isArray(val)) {\n return Array.isArray(actual) && val.join(\"/\") === actual.join(\"/\");\n }\n return String(val) === String(actual);\n });\n });\n\n if (!isValidPath) {\n await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext);\n return;\n }\n }\n // fallback: true or \"blocking\" — always SSR on-demand.\n // In dev mode, Next.js does the same (no fallback shell).\n // In production, both modes SSR on-demand with caching.\n // The difference is that fallback:true could serve a shell first,\n // but since we always have data available via SSR, we render fully.\n }\n\n if (typeof pageModule.getServerSideProps === \"function\") {\n const context = {\n params,\n req,\n res,\n query: parseQuery(url),\n resolvedUrl: localeStrippedUrl,\n locale: locale ?? i18nConfig?.defaultLocale,\n locales: i18nConfig?.locales,\n defaultLocale: i18nConfig?.defaultLocale,\n };\n const result = await pageModule.getServerSideProps(context);\n if (result && \"props\" in result) {\n pageProps = result.props;\n }\n if (result && \"redirect\" in result) {\n const { redirect } = result;\n const status = redirect.statusCode ?? (redirect.permanent ? 308 : 307);\n // Sanitize destination to prevent open redirect via protocol-relative URLs.\n // Also normalize backslashes — browsers treat \\ as / in URL contexts.\n let dest = redirect.destination;\n if (!dest.startsWith(\"http://\") && !dest.startsWith(\"https://\")) {\n dest = dest.replace(/^[\\\\/]+/, \"/\");\n }\n res.writeHead(status, {\n Location: dest,\n });\n res.end();\n return;\n }\n if (result && \"notFound\" in result && result.notFound) {\n await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext);\n return;\n }\n }\n // Collect font preloads early so ISR cached responses can include\n // the Link header (font preloads are module-level state that persists\n // across requests after the font modules are first loaded).\n let earlyFontLinkHeader = \"\";\n try {\n const earlyPreloads: Array<{ href: string; type: string }> = [];\n const fontGoogleEarly = await server.ssrLoadModule(\"next/font/google\");\n if (typeof fontGoogleEarly.getSSRFontPreloads === \"function\") {\n earlyPreloads.push(...fontGoogleEarly.getSSRFontPreloads());\n }\n const fontLocalEarly = await server.ssrLoadModule(\"next/font/local\");\n if (typeof fontLocalEarly.getSSRFontPreloads === \"function\") {\n earlyPreloads.push(...fontLocalEarly.getSSRFontPreloads());\n }\n if (earlyPreloads.length > 0) {\n earlyFontLinkHeader = earlyPreloads\n .map((p) => `<${p.href}>; rel=preload; as=font; type=${p.type}; crossorigin`)\n .join(\", \");\n }\n } catch {\n // Font modules not loaded yet — skip\n }\n\n if (typeof pageModule.getStaticProps === \"function\") {\n // Check ISR cache before calling getStaticProps\n const cacheKey = isrCacheKey(\"pages\", url.split(\"?\")[0]);\n const cached = await isrGet(cacheKey);\n\n if (cached && !cached.isStale && cached.value.value?.kind === \"PAGES\") {\n // Fresh cache hit — serve directly\n const cachedPage = cached.value.value as CachedPagesValue;\n const cachedHtml = cachedPage.html;\n const transformedHtml = await server.transformIndexHtml(url, cachedHtml);\n const revalidateSecs = getRevalidateDuration(cacheKey) ?? 60;\n const hitHeaders: Record<string, string> = {\n \"Content-Type\": \"text/html\",\n \"X-Vinext-Cache\": \"HIT\",\n \"Cache-Control\": `s-maxage=${revalidateSecs}, stale-while-revalidate`,\n };\n if (earlyFontLinkHeader) hitHeaders[\"Link\"] = earlyFontLinkHeader;\n res.writeHead(200, hitHeaders);\n res.end(transformedHtml);\n return;\n }\n\n if (cached && cached.isStale && cached.value.value?.kind === \"PAGES\") {\n // Stale hit — serve stale immediately, trigger background regen\n const cachedPage = cached.value.value as CachedPagesValue;\n const cachedHtml = cachedPage.html;\n const transformedHtml = await server.transformIndexHtml(url, cachedHtml);\n\n // Trigger background regeneration: re-run getStaticProps and\n // update the cache so the next request is a HIT with fresh data.\n triggerBackgroundRegeneration(cacheKey, async () => {\n const freshResult = await pageModule.getStaticProps({ params });\n if (freshResult && \"props\" in freshResult) {\n const revalidate = typeof freshResult.revalidate === \"number\" ? freshResult.revalidate : 0;\n if (revalidate > 0) {\n await isrSet(cacheKey, buildPagesCacheValue(cachedHtml, freshResult.props), revalidate);\n }\n }\n });\n\n const revalidateSecs = getRevalidateDuration(cacheKey) ?? 60;\n const staleHeaders: Record<string, string> = {\n \"Content-Type\": \"text/html\",\n \"X-Vinext-Cache\": \"STALE\",\n \"Cache-Control\": `s-maxage=${revalidateSecs}, stale-while-revalidate`,\n };\n if (earlyFontLinkHeader) staleHeaders[\"Link\"] = earlyFontLinkHeader;\n res.writeHead(200, staleHeaders);\n res.end(transformedHtml);\n return;\n }\n\n // Cache miss — call getStaticProps normally\n const context = {\n params,\n locale: locale ?? i18nConfig?.defaultLocale,\n locales: i18nConfig?.locales,\n defaultLocale: i18nConfig?.defaultLocale,\n };\n const result = await pageModule.getStaticProps(context);\n if (result && \"props\" in result) {\n pageProps = result.props;\n }\n if (result && \"redirect\" in result) {\n const { redirect } = result;\n const status = redirect.statusCode ?? (redirect.permanent ? 308 : 307);\n // Sanitize destination to prevent open redirect via protocol-relative URLs.\n // Also normalize backslashes — browsers treat \\ as / in URL contexts.\n let dest = redirect.destination;\n if (!dest.startsWith(\"http://\") && !dest.startsWith(\"https://\")) {\n dest = dest.replace(/^[\\\\/]+/, \"/\");\n }\n res.writeHead(status, {\n Location: dest,\n });\n res.end();\n return;\n }\n if (result && \"notFound\" in result && result.notFound) {\n await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext);\n return;\n }\n\n // Extract revalidate period for ISR caching after render\n if (typeof result?.revalidate === \"number\" && result.revalidate > 0) {\n isrRevalidateSeconds = result.revalidate;\n }\n }\n\n // Try to load _app.tsx if it exists\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let AppComponent: any = null;\n const appPath = path.join(pagesDir, \"_app\");\n if (findFileWithExtensions(appPath)) {\n try {\n const appModule = await server.ssrLoadModule(appPath);\n AppComponent = appModule.default ?? null;\n } catch {\n // _app exists but failed to load\n }\n }\n\n // React and ReactDOMServer are imported at the top level as native Node\n // modules. They must NOT go through Vite's SSR module runner because\n // React is CJS and the ESModulesEvaluator doesn't define `module`.\n const createElement = React.createElement;\n let element: React.ReactElement;\n\n // wrapWithRouterContext wraps the element in RouterContext.Provider so that\n // next/compat/router's useRouter() returns the real router.\n const wrapWithRouterContext = routerShim.wrapWithRouterContext;\n\n if (AppComponent) {\n element = createElement(AppComponent, {\n Component: PageComponent,\n pageProps,\n });\n } else {\n element = createElement(PageComponent, pageProps);\n }\n\n if (wrapWithRouterContext) {\n element = wrapWithRouterContext(element);\n }\n\n // Reset SSR head collector before rendering so <Head> tags are captured\n const headShim = await server.ssrLoadModule(\"next/head\");\n if (typeof headShim.resetSSRHead === \"function\") {\n headShim.resetSSRHead();\n }\n\n // Flush any pending dynamic() preloads so components are ready\n const dynamicShim = await server.ssrLoadModule(\"next/dynamic\");\n if (typeof dynamicShim.flushPreloads === \"function\") {\n await dynamicShim.flushPreloads();\n }\n\n // Collect any <Head> tags that were rendered during data fetching\n // (shell head tags — Suspense children's head tags arrive late,\n // matching Next.js behavior)\n\n // Collect SSR font links (Google Fonts <link> tags) and font class styles\n let fontHeadHTML = \"\";\n const allFontStyles: string[] = [];\n const allFontPreloads: Array<{ href: string; type: string }> = [];\n try {\n const fontGoogle = await server.ssrLoadModule(\"next/font/google\");\n if (typeof fontGoogle.getSSRFontLinks === \"function\") {\n const fontUrls = fontGoogle.getSSRFontLinks();\n for (const fontUrl of fontUrls) {\n const safeFontUrl = fontUrl.replace(/&/g, \"&amp;\").replace(/\"/g, \"&quot;\");\n fontHeadHTML += `<link rel=\"stylesheet\" href=\"${safeFontUrl}\" />\\n `;\n }\n }\n if (typeof fontGoogle.getSSRFontStyles === \"function\") {\n allFontStyles.push(...fontGoogle.getSSRFontStyles());\n }\n // Collect preloads from self-hosted Google fonts\n if (typeof fontGoogle.getSSRFontPreloads === \"function\") {\n allFontPreloads.push(...fontGoogle.getSSRFontPreloads());\n }\n } catch {\n // next/font/google not used — skip\n }\n try {\n const fontLocal = await server.ssrLoadModule(\"next/font/local\");\n if (typeof fontLocal.getSSRFontStyles === \"function\") {\n allFontStyles.push(...fontLocal.getSSRFontStyles());\n }\n // Collect preloads from local font files\n if (typeof fontLocal.getSSRFontPreloads === \"function\") {\n allFontPreloads.push(...fontLocal.getSSRFontPreloads());\n }\n } catch {\n // next/font/local not used — skip\n }\n // Emit <link rel=\"preload\"> for all collected font files (Google + local)\n for (const { href, type } of allFontPreloads) {\n // Escape href/type to prevent HTML attribute injection (defense-in-depth;\n // Vite-resolved asset paths should never contain special chars).\n const safeHref = href.replace(/&/g, \"&amp;\").replace(/\"/g, \"&quot;\");\n const safeType = type.replace(/&/g, \"&amp;\").replace(/\"/g, \"&quot;\");\n fontHeadHTML += `<link rel=\"preload\" href=\"${safeHref}\" as=\"font\" type=\"${safeType}\" crossorigin />\\n `;\n }\n if (allFontStyles.length > 0) {\n fontHeadHTML += `<style data-vinext-fonts>${allFontStyles.join(\"\\n\")}</style>\\n `;\n }\n\n // Convert absolute file paths to Vite-servable URLs (relative to root)\n const viteRoot = server.config.root;\n const pageModuleUrl = \"/\" + path.relative(viteRoot, route.filePath);\n const appModuleUrl = AppComponent\n ? \"/\" + path.relative(viteRoot, path.join(pagesDir, \"_app\"))\n : null;\n\n // Hydration entry: inline script that imports the page and hydrates.\n // Stores the React root and page loader for client-side navigation.\n const hydrationScript = `\n<script type=\"module\">\nimport React from \"react\";\nimport { hydrateRoot } from \"react-dom/client\";\nimport { wrapWithRouterContext } from \"next/router\";\n\nconst nextData = window.__NEXT_DATA__;\nconst { pageProps } = nextData.props;\n\nasync function hydrate() {\n const pageModule = await import(\"${pageModuleUrl}\");\n const PageComponent = pageModule.default;\n let element;\n ${\n appModuleUrl\n ? `\n const appModule = await import(\"${appModuleUrl}\");\n const AppComponent = appModule.default;\n window.__VINEXT_APP__ = AppComponent;\n element = React.createElement(AppComponent, { Component: PageComponent, pageProps });\n `\n : `\n element = React.createElement(PageComponent, pageProps);\n `\n }\n element = wrapWithRouterContext(element);\n const root = hydrateRoot(document.getElementById(\"__next\"), element);\n window.__VINEXT_ROOT__ = root;\n}\nhydrate();\n</script>`;\n\n const nextDataScript = `<script>window.__NEXT_DATA__ = ${safeJsonStringify({\n props: { pageProps },\n page: patternToNextFormat(route.pattern),\n query: params,\n isFallback: false,\n locale: locale ?? i18nConfig?.defaultLocale,\n locales: i18nConfig?.locales,\n defaultLocale: i18nConfig?.defaultLocale,\n // Include module URLs so client navigation can import pages directly\n __vinext: {\n pageModuleUrl,\n appModuleUrl,\n },\n })}${i18nConfig ? `;window.__VINEXT_LOCALE__=${safeJsonStringify(locale ?? i18nConfig.defaultLocale)};window.__VINEXT_LOCALES__=${safeJsonStringify(i18nConfig.locales)};window.__VINEXT_DEFAULT_LOCALE__=${safeJsonStringify(i18nConfig.defaultLocale)}` : \"\"}</script>`;\n\n // Try to load custom _document.tsx\n const docPath = path.join(pagesDir, \"_document\");\n let DocumentComponent: any = null;\n if (findFileWithExtensions(docPath)) {\n try {\n const docModule = await server.ssrLoadModule(docPath);\n DocumentComponent = docModule.default ?? null;\n } catch {\n // _document exists but failed to load\n }\n }\n\n const allScripts = `${nextDataScript}\\n ${hydrationScript}`;\n\n // Build cache headers for ISR responses\n const extraHeaders: Record<string, string> = {};\n if (isrRevalidateSeconds) {\n extraHeaders[\"Cache-Control\"] = `s-maxage=${isrRevalidateSeconds}, stale-while-revalidate`;\n extraHeaders[\"X-Vinext-Cache\"] = \"MISS\";\n }\n\n // Set HTTP Link header for font preloading.\n // This lets the browser (and CDN) start fetching font files before parsing HTML.\n if (allFontPreloads.length > 0) {\n extraHeaders[\"Link\"] = allFontPreloads\n .map((p) => `<${p.href}>; rel=preload; as=font; type=${p.type}; crossorigin`)\n .join(\", \");\n }\n\n // Stream the page using progressive SSR.\n // The shell (layouts, non-suspended content) arrives immediately.\n // Suspense content streams in as it resolves.\n await streamPageToResponse(res, element, {\n url,\n server,\n fontHeadHTML,\n scripts: allScripts,\n DocumentComponent,\n statusCode,\n extraHeaders,\n // Collect head HTML AFTER the shell renders (inside streamPageToResponse,\n // after renderToReadableStream resolves). Head tags from Suspense\n // children arrive late — this matches Next.js behavior.\n getHeadHTML: () => typeof headShim.getSSRHeadHTML === \"function\"\n ? headShim.getSSRHeadHTML()\n : \"\",\n });\n\n // Clear SSR context after rendering\n if (typeof routerShim.setSSRContext === \"function\") {\n routerShim.setSSRContext(null);\n }\n\n // If ISR is enabled, we need the full HTML for caching.\n // For ISR, re-render synchronously to get the complete HTML string.\n // This runs after the stream is already sent, so it doesn't affect TTFB.\n if (isrRevalidateSeconds !== null && isrRevalidateSeconds > 0) {\n let isrElement = AppComponent\n ? createElement(AppComponent, { Component: pageModule.default, pageProps })\n : createElement(pageModule.default, pageProps);\n if (wrapWithRouterContext) {\n isrElement = wrapWithRouterContext(isrElement);\n }\n const isrBodyHtml = await renderToStringAsync(isrElement);\n const isrHtml = `<!DOCTYPE html><html><head></head><body><div id=\"__next\">${isrBodyHtml}</div>${allScripts}</body></html>`;\n const cacheKey = isrCacheKey(\"pages\", url.split(\"?\")[0]);\n await isrSet(\n cacheKey,\n buildPagesCacheValue(isrHtml, pageProps),\n isrRevalidateSeconds,\n );\n setRevalidateDuration(cacheKey, isrRevalidateSeconds);\n }\n } catch (e) {\n // Let Vite fix the stack trace for better dev experience\n server.ssrFixStacktrace(e as Error);\n console.error(e);\n // Report error via instrumentation hook if registered\n reportRequestError(\n e instanceof Error ? e : new Error(String(e)),\n {\n path: url,\n method: req.method ?? \"GET\",\n headers: Object.fromEntries(\n Object.entries(req.headers).map(([k, v]) => [k, Array.isArray(v) ? v.join(\", \") : String(v ?? \"\")]),\n ),\n },\n { routerKind: \"Pages Router\", routePath: route.pattern, routeType: \"render\" },\n ).catch(() => { /* ignore reporting errors */ });\n // Try to render custom 500 error page\n try {\n await renderErrorPage(server, req, res, url, pagesDir, 500);\n } catch (fallbackErr) {\n // If error page itself fails, fall back to plain text.\n // This is a dev-only code path (prod uses prod-server.ts), so\n // include the error message for debugging.\n res.statusCode = 500;\n res.end(`Internal Server Error: ${(fallbackErr as Error).message}`);\n }\n } finally {\n // Cleanup is handled by ALS scope unwinding —\n // each runWith*() scope is automatically cleaned up when it exits.\n }\n }) // end runWithFetchCache\n ) // end runWithPrivateCache\n ) // end _runWithCacheState\n ) // end runWithHeadState\n ); // end runWithRouterState\n };\n}\n\n/**\n * Render a custom error page (404.tsx, 500.tsx, or _error.tsx).\n *\n * Next.js resolution order:\n * - 404: pages/404.tsx -> pages/_error.tsx -> default\n * - 500: pages/500.tsx -> pages/_error.tsx -> default\n * - other: pages/_error.tsx -> default\n */\nasync function renderErrorPage(\n server: ViteDevServer,\n _req: IncomingMessage,\n res: ServerResponse,\n url: string,\n pagesDir: string,\n statusCode: number,\n wrapWithRouterContext?: ((el: React.ReactElement) => React.ReactElement) | null,\n): Promise<void> {\n // Try specific status page first, then _error, then fallback\n const candidates =\n statusCode === 404\n ? [\"404\", \"_error\"]\n : statusCode === 500\n ? [\"500\", \"_error\"]\n : [\"_error\"];\n\n for (const candidate of candidates) {\n try {\n const candidatePath = path.join(pagesDir, candidate);\n if (!findFileWithExtensions(candidatePath)) continue;\n\n const errorModule = await server.ssrLoadModule(candidatePath);\n const ErrorComponent = errorModule.default;\n if (!ErrorComponent) continue;\n\n // Try to load _app.tsx to wrap the error page\n let AppComponent: any = null;\n const appPathErr = path.join(pagesDir, \"_app\");\n if (findFileWithExtensions(appPathErr)) {\n try {\n const appModule = await server.ssrLoadModule(appPathErr);\n AppComponent = appModule.default ?? null;\n } catch {\n // _app exists but failed to load\n }\n }\n\n const createElement = React.createElement;\n const errorProps = { statusCode };\n\n // If the caller didn't supply wrapWithRouterContext, load it now.\n // ssrLoadModule caches internally so the cost is negligible.\n let wrapFn = wrapWithRouterContext;\n if (!wrapFn) {\n try {\n const errRouterShim = await server.ssrLoadModule(\"next/router\");\n wrapFn = errRouterShim.wrapWithRouterContext;\n } catch {\n // router shim not available — continue without it\n }\n }\n\n let element: React.ReactElement;\n if (AppComponent) {\n element = createElement(AppComponent, {\n Component: ErrorComponent,\n pageProps: errorProps,\n });\n } else {\n element = createElement(ErrorComponent, errorProps);\n }\n\n if (wrapFn) {\n element = wrapFn(element);\n }\n\n const bodyHtml = await renderToStringAsync(element);\n\n // Try custom _document\n let html: string;\n let DocumentComponent: any = null;\n const docPathErr = path.join(pagesDir, \"_document\");\n if (findFileWithExtensions(docPathErr)) {\n try {\n const docModule = await server.ssrLoadModule(docPathErr);\n DocumentComponent = docModule.default ?? null;\n } catch {\n // _document exists but failed to load\n }\n }\n\n if (DocumentComponent) {\n const docElement = createElement(DocumentComponent);\n let docHtml = await renderToStringAsync(docElement);\n docHtml = docHtml.replace(\"__NEXT_MAIN__\", bodyHtml);\n docHtml = docHtml.replace(\"<!-- __NEXT_SCRIPTS__ -->\", \"\");\n html = docHtml;\n } else {\n html = `<!DOCTYPE html>\n<html>\n<head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n</head>\n<body>\n <div id=\"__next\">${bodyHtml}</div>\n</body>\n</html>`;\n }\n\n const transformedHtml = await server.transformIndexHtml(url, html);\n res.writeHead(statusCode, { \"Content-Type\": \"text/html\" });\n res.end(transformedHtml);\n return;\n } catch {\n // This candidate doesn't exist, try next\n continue;\n }\n }\n\n // No custom error page found — use plain text fallback\n res.writeHead(statusCode, { \"Content-Type\": \"text/plain\" });\n res.end(`${statusCode} - ${statusCode === 404 ? \"Page not found\" : \"Internal Server Error\"}`);\n}\n\n\n"]}
1
+ {"version":3,"file":"dev-server.js","sourceRoot":"","sources":["../../src/server/dev-server.ts"],"names":[],"mappings":"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","sourcesContent":["import type { ViteDevServer } from \"vite\";\nimport type { IncomingMessage, ServerResponse } from \"node:http\";\nimport type { Route } from \"../routing/pages-router.js\";\nimport { matchRoute, patternToNextFormat } from \"../routing/pages-router.js\";\nimport type { NextI18nConfig } from \"../config/next-config.js\";\nimport {\n isrGet,\n isrSet,\n isrCacheKey,\n buildPagesCacheValue,\n triggerBackgroundRegeneration,\n setRevalidateDuration,\n getRevalidateDuration,\n} from \"./isr-cache.js\";\nimport type { CachedPagesValue } from \"../shims/cache.js\";\nimport { runWithFetchCache } from \"../shims/fetch-cache.js\";\nimport { _runWithCacheState } from \"../shims/cache.js\";\nimport { runWithPrivateCache } from \"../shims/cache-runtime.js\";\n// Import server-only state modules to register ALS-backed accessors.\n// These modules must be imported before any rendering occurs.\nimport { runWithRouterState } from \"../shims/router-state.js\";\nimport { runWithHeadState } from \"../shims/head-state.js\";\nimport { reportRequestError } from \"./instrumentation.js\";\nimport { safeJsonStringify } from \"./html.js\";\nimport { parseQueryString as parseQuery } from \"../utils/query.js\";\nimport path from \"node:path\";\nimport fs from \"node:fs\";\nimport React from \"react\";\nimport { renderToReadableStream } from \"react-dom/server.edge\";\nimport { logRequest, now } from \"./request-log.js\";\nimport { createValidFileMatcher, type ValidFileMatcher } from \"../routing/file-matcher.js\";\n\n/**\n * Render a React element to a string using renderToReadableStream.\n *\n * Uses the edge-compatible Web Streams API. Waits for all Suspense\n * boundaries to resolve via stream.allReady before collecting output.\n * Used for _document rendering and error pages (small, non-streaming).\n */\nasync function renderToStringAsync(element: React.ReactElement): Promise<string> {\n const stream = await renderToReadableStream(element);\n await stream.allReady;\n return new Response(stream).text();\n}\n\n/** Body placeholder used to split the document shell for streaming. */\nconst STREAM_BODY_MARKER = \"<!--VINEXT_STREAM_BODY-->\";\n\n/**\n * Stream a Pages Router page response using progressive SSR.\n *\n * Sends the HTML shell (head, layout, Suspense fallbacks) immediately\n * when the React shell is ready, then streams Suspense content as it\n * resolves. This gives the browser content to render while slow data\n * loads are still in flight.\n *\n * `__NEXT_DATA__` and the hydration script are appended after the body\n * stream completes (the data is known before rendering starts, but\n * deferring them reduces TTFB and lets the browser start parsing the\n * shell sooner).\n */\nasync function streamPageToResponse(\n res: ServerResponse,\n element: React.ReactElement,\n options: {\n url: string;\n server: ViteDevServer;\n fontHeadHTML: string;\n scripts: string;\n DocumentComponent: React.ComponentType | null;\n statusCode?: number;\n extraHeaders?: Record<string, string | string[]>;\n /** Called after renderToReadableStream resolves (shell ready) to collect head HTML */\n getHeadHTML: () => string;\n },\n): Promise<void> {\n const {\n url,\n server,\n fontHeadHTML,\n scripts,\n DocumentComponent,\n statusCode = 200,\n extraHeaders,\n getHeadHTML,\n } = options;\n\n // Start the React body stream FIRST — the promise resolves when the\n // shell is ready (synchronous content outside Suspense boundaries).\n // This triggers the render which populates <Head> tags.\n const bodyStream = await renderToReadableStream(element);\n\n // Now that the shell has rendered, collect head HTML\n const headHTML = getHeadHTML();\n\n // Build the document shell with a placeholder for the body\n let shellTemplate: string;\n\n if (DocumentComponent) {\n const docElement = React.createElement(DocumentComponent);\n let docHtml = await renderToStringAsync(docElement);\n // Replace __NEXT_MAIN__ with our stream marker\n docHtml = docHtml.replace(\"__NEXT_MAIN__\", STREAM_BODY_MARKER);\n // Inject head tags\n if (headHTML || fontHeadHTML) {\n docHtml = docHtml.replace(\"</head>\", ` ${fontHeadHTML}${headHTML}\\n</head>`);\n }\n // Inject scripts: replace placeholder or append before </body>\n docHtml = docHtml.replace(\"<!-- __NEXT_SCRIPTS__ -->\", scripts);\n if (!docHtml.includes(\"__NEXT_DATA__\")) {\n docHtml = docHtml.replace(\"</body>\", ` ${scripts}\\n</body>`);\n }\n shellTemplate = docHtml;\n } else {\n shellTemplate = `<!DOCTYPE html>\n<html>\n<head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n ${fontHeadHTML}${headHTML}\n</head>\n<body>\n <div id=\"__next\">${STREAM_BODY_MARKER}</div>\n ${scripts}\n</body>\n</html>`;\n }\n\n // Apply Vite's HTML transforms (injects HMR client, etc.) on the full\n // shell template, then split at the body marker.\n const transformedShell = await server.transformIndexHtml(url, shellTemplate);\n const markerIdx = transformedShell.indexOf(STREAM_BODY_MARKER);\n const prefix = transformedShell.slice(0, markerIdx);\n const suffix = transformedShell.slice(markerIdx + STREAM_BODY_MARKER.length);\n\n // Send headers and start streaming.\n // Set array-valued headers (e.g. Set-Cookie from gSSP) via setHeader()\n // before writeHead(), since writeHead()'s headers object doesn't handle\n // arrays portably. Then writeHead() merges with any setHeader() calls.\n const headers: Record<string, string> = {\n \"Content-Type\": \"text/html\",\n \"Transfer-Encoding\": \"chunked\",\n };\n if (extraHeaders) {\n for (const [key, val] of Object.entries(extraHeaders)) {\n if (Array.isArray(val)) {\n res.setHeader(key, val);\n } else {\n headers[key] = val;\n }\n }\n }\n res.writeHead(statusCode, headers);\n\n // Write the document prefix (head, opening body)\n res.write(prefix);\n\n // Pipe the React body stream through (Suspense content streams progressively)\n const reader = bodyStream.getReader();\n try {\n for (;;) {\n const { done, value } = await reader.read();\n if (done) break;\n res.write(value);\n }\n } finally {\n reader.releaseLock();\n }\n\n // Write the document suffix (closing tags, scripts)\n res.end(suffix);\n}\n\n/** Check if a file exists with any configured page extension. */\nfunction findFileWithExtensions(basePath: string, matcher: ValidFileMatcher): boolean {\n return matcher.dottedExtensions.some((ext) => fs.existsSync(basePath + ext));\n}\n\n/**\n * Extract locale prefix from a URL path.\n * e.g. /fr/about -> { locale: \"fr\", url: \"/about\", hadPrefix: true }\n * /about -> { locale: \"en\", url: \"/about\", hadPrefix: false } (defaultLocale)\n */\nexport function extractLocaleFromUrl(\n url: string,\n i18nConfig: NextI18nConfig,\n): { locale: string; url: string; hadPrefix: boolean } {\n const pathname = url.split(\"?\")[0];\n const parts = pathname.split(\"/\").filter(Boolean);\n const query = url.includes(\"?\") ? url.slice(url.indexOf(\"?\")) : \"\";\n\n if (parts.length > 0 && i18nConfig.locales.includes(parts[0])) {\n const locale = parts[0];\n const rest = \"/\" + parts.slice(1).join(\"/\");\n return { locale, url: (rest || \"/\") + query, hadPrefix: true };\n }\n\n return { locale: i18nConfig.defaultLocale, url, hadPrefix: false };\n}\n\n/**\n * Detect the preferred locale from the Accept-Language header.\n * Returns the best matching locale or null.\n */\nexport function detectLocaleFromHeaders(\n req: IncomingMessage,\n i18nConfig: NextI18nConfig,\n): string | null {\n const acceptLang = req.headers[\"accept-language\"];\n if (!acceptLang) return null;\n\n // Parse Accept-Language: en-US,en;q=0.9,fr;q=0.8\n const langs = acceptLang\n .split(\",\")\n .map((part) => {\n const [lang, qPart] = part.trim().split(\";\");\n const q = qPart ? parseFloat(qPart.replace(\"q=\", \"\")) : 1;\n return { lang: lang.trim().toLowerCase(), q };\n })\n .sort((a, b) => b.q - a.q);\n\n for (const { lang } of langs) {\n // Exact match\n const exactMatch = i18nConfig.locales.find((l) => l.toLowerCase() === lang);\n if (exactMatch) return exactMatch;\n\n // Prefix match (e.g. \"en-US\" matches \"en\")\n const prefix = lang.split(\"-\")[0];\n const prefixMatch = i18nConfig.locales.find(\n (l) => l.toLowerCase() === prefix || l.toLowerCase().startsWith(prefix + \"-\"),\n );\n if (prefixMatch) return prefixMatch;\n }\n\n return null;\n}\n\n/**\n * Parse the NEXT_LOCALE cookie from a request.\n * Returns the cookie value if it matches a configured locale, otherwise null.\n */\nexport function parseCookieLocale(\n req: IncomingMessage,\n i18nConfig: NextI18nConfig,\n): string | null {\n const cookieHeader = req.headers.cookie;\n if (!cookieHeader) return null;\n\n // Simple cookie parsing — find NEXT_LOCALE=value\n const match = cookieHeader.match(/(?:^|;\\s*)NEXT_LOCALE=([^;]*)/);\n if (!match) return null;\n\n let value: string;\n try {\n value = decodeURIComponent(match[1].trim());\n } catch {\n return null;\n }\n // Only return if it's a valid configured locale\n if (i18nConfig.locales.includes(value)) return value;\n return null;\n}\n\n/**\n * Create an SSR request handler for the Pages Router.\n *\n * For each request:\n * 1. Match the URL against discovered routes\n * 2. Load the page module via Vite's SSR module loader\n * 3. Call getServerSideProps/getStaticProps if present\n * 4. Render the component to HTML\n * 5. Wrap in _document shell and send response\n */\nexport function createSSRHandler(\n server: ViteDevServer,\n routes: Route[],\n pagesDir: string,\n i18nConfig?: NextI18nConfig | null,\n fileMatcher?: ValidFileMatcher,\n) {\n const matcher = fileMatcher ?? createValidFileMatcher();\n return async (\n req: IncomingMessage,\n res: ServerResponse,\n url: string,\n /** Status code override — propagated from middleware rewrite status. */\n statusCode?: number,\n ): Promise<void> => {\n const _reqStart = now();\n let _compileEnd: number | undefined;\n let _renderEnd: number | undefined;\n\n res.on(\"finish\", () => {\n const totalMs = now() - _reqStart;\n const compileMs = _compileEnd !== undefined ? Math.round(_compileEnd - _reqStart) : undefined;\n // renderMs = time from end of compile to end of stream.\n // _renderEnd is set just after streamPageToResponse resolves.\n const renderMs = _renderEnd !== undefined && _compileEnd !== undefined\n ? Math.round(_renderEnd - _compileEnd)\n : undefined;\n logRequest({\n method: req.method ?? \"GET\",\n url,\n status: res.statusCode,\n totalMs,\n compileMs,\n renderMs,\n });\n });\n\n // --- i18n: extract locale from URL prefix ---\n let locale: string | undefined;\n let localeStrippedUrl = url;\n\n if (i18nConfig) {\n const parsed = extractLocaleFromUrl(url, i18nConfig);\n locale = parsed.locale;\n localeStrippedUrl = parsed.url;\n\n // If no locale prefix, check NEXT_LOCALE cookie first, then Accept-Language\n if (!parsed.hadPrefix) {\n const cookieLocale = parseCookieLocale(req, i18nConfig);\n if (cookieLocale && cookieLocale !== i18nConfig.defaultLocale) {\n // NEXT_LOCALE cookie overrides Accept-Language — redirect to cookie locale\n const redirectUrl = `/${cookieLocale}${url === \"/\" ? \"\" : url}`;\n res.writeHead(307, { Location: redirectUrl });\n res.end();\n return;\n }\n // If no cookie or cookie matches default, fall through to Accept-Language detection\n if (!cookieLocale && i18nConfig.localeDetection !== false) {\n const detectedLocale = detectLocaleFromHeaders(req, i18nConfig);\n if (detectedLocale && detectedLocale !== i18nConfig.defaultLocale) {\n const redirectUrl = `/${detectedLocale}${url === \"/\" ? \"\" : url}`;\n res.writeHead(307, { Location: redirectUrl });\n res.end();\n return;\n }\n }\n }\n }\n\n const match = matchRoute(localeStrippedUrl, routes);\n\n if (!match) {\n // No route matched — try to render custom 404 page\n await renderErrorPage(server, req, res, url, pagesDir, 404, undefined, matcher);\n return;\n }\n\n const { route, params } = match;\n\n // Wrap the entire request in nested AsyncLocalStorage.run() scopes to\n // ensure per-request isolation for all state modules.\n return runWithRouterState(() =>\n runWithHeadState(() =>\n _runWithCacheState(() =>\n runWithPrivateCache(() =>\n runWithFetchCache(async () => {\n try {\n // Set SSR context for the router shim so useRouter() returns\n // the correct URL and params during server-side rendering.\n const routerShim = await server.ssrLoadModule(\"next/router\");\n if (typeof routerShim.setSSRContext === \"function\") {\n routerShim.setSSRContext({\n pathname: localeStrippedUrl.split(\"?\")[0],\n query: { ...params, ...parseQuery(url) },\n asPath: url,\n locale: locale ?? i18nConfig?.defaultLocale,\n locales: i18nConfig?.locales,\n defaultLocale: i18nConfig?.defaultLocale,\n });\n }\n\n // Set globalThis locale info for Link component locale prop support during SSR\n if (i18nConfig) {\n (globalThis as any).__VINEXT_LOCALE__ = locale ?? i18nConfig.defaultLocale;\n (globalThis as any).__VINEXT_LOCALES__ = i18nConfig.locales;\n (globalThis as any).__VINEXT_DEFAULT_LOCALE__ = i18nConfig.defaultLocale;\n }\n\n // Load the page module through Vite's SSR pipeline\n // This gives us HMR and transform support for free\n const pageModule = await server.ssrLoadModule(route.filePath);\n // Mark end of compile phase: everything from here is rendering.\n _compileEnd = now();\n\n // Get the page component (default export)\n const PageComponent = pageModule.default;\n if (!PageComponent) {\n console.error(`[vinext] Page ${route.filePath} has no default export`);\n res.statusCode = 500;\n res.end(\"Page has no default export\");\n return;\n }\n\n // Collect page props via data fetching methods\n let pageProps: Record<string, unknown> = {};\n let isrRevalidateSeconds: number | null = null;\n\n // Handle getStaticPaths for dynamic routes: validate the path\n // and respect fallback: false (return 404 for unlisted paths).\n if (typeof pageModule.getStaticPaths === \"function\" && route.isDynamic) {\n const pathsResult = await pageModule.getStaticPaths({\n locales: i18nConfig?.locales ?? [],\n defaultLocale: i18nConfig?.defaultLocale ?? \"\",\n });\n const fallback = pathsResult?.fallback ?? false;\n\n if (fallback === false) {\n // Only allow paths explicitly listed in getStaticPaths\n const paths: Array<{ params: Record<string, string | string[]> }> =\n pathsResult?.paths ?? [];\n const isValidPath = paths.some((p: { params: Record<string, string | string[]> }) => {\n return Object.entries(p.params).every(([key, val]) => {\n const actual = params[key];\n if (Array.isArray(val)) {\n return Array.isArray(actual) && val.join(\"/\") === actual.join(\"/\");\n }\n return String(val) === String(actual);\n });\n });\n\n if (!isValidPath) {\n await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext, matcher);\n return;\n }\n }\n // fallback: true or \"blocking\" — always SSR on-demand.\n // In dev mode, Next.js does the same (no fallback shell).\n // In production, both modes SSR on-demand with caching.\n // The difference is that fallback:true could serve a shell first,\n // but since we always have data available via SSR, we render fully.\n }\n\n // Headers set by getServerSideProps for explicit forwarding to\n // streamPageToResponse. Without this, they survive only through\n // Node.js writeHead() implicitly merging setHeader() calls, which\n // would silently break if streamPageToResponse is refactored.\n const gsspExtraHeaders: Record<string, string | string[]> = {};\n\n if (typeof pageModule.getServerSideProps === \"function\") {\n // Snapshot existing headers so we can detect what gSSP adds.\n const headersBeforeGSSP = new Set(Object.keys(res.getHeaders()));\n\n const context = {\n params,\n req,\n res,\n query: parseQuery(url),\n resolvedUrl: localeStrippedUrl,\n locale: locale ?? i18nConfig?.defaultLocale,\n locales: i18nConfig?.locales,\n defaultLocale: i18nConfig?.defaultLocale,\n };\n const result = await pageModule.getServerSideProps(context);\n // If gSSP called res.end() directly (short-circuit pattern),\n // the response is already sent. Do not continue rendering.\n // Note: middleware headers are already on `res` (middleware runs\n // before this handler in the connect chain), so they are included\n // in the short-circuited response. The prod path achieves the same\n // result via the worker entry merging middleware headers after\n // renderPage() returns.\n if (res.writableEnded) {\n return;\n }\n if (result && \"props\" in result) {\n pageProps = result.props;\n }\n if (result && \"redirect\" in result) {\n const { redirect } = result;\n const status = redirect.statusCode ?? (redirect.permanent ? 308 : 307);\n // Sanitize destination to prevent open redirect via protocol-relative URLs.\n // Also normalize backslashes — browsers treat \\ as / in URL contexts.\n let dest = redirect.destination;\n if (!dest.startsWith(\"http://\") && !dest.startsWith(\"https://\")) {\n dest = dest.replace(/^[\\\\/]+/, \"/\");\n }\n res.writeHead(status, {\n Location: dest,\n });\n res.end();\n return;\n }\n if (result && \"notFound\" in result && result.notFound) {\n await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext);\n return;\n }\n // Preserve any status code set by gSSP (e.g. res.statusCode = 201).\n // This takes precedence over the default 200 but not over middleware status.\n if (!statusCode && res.statusCode !== 200) {\n statusCode = res.statusCode;\n }\n\n // Capture headers newly set by gSSP and forward them explicitly.\n // Remove from `res` to prevent duplication when writeHead() merges.\n const headersAfterGSSP = res.getHeaders();\n for (const [key, val] of Object.entries(headersAfterGSSP)) {\n if (headersBeforeGSSP.has(key) || val == null) continue;\n res.removeHeader(key);\n if (Array.isArray(val)) {\n gsspExtraHeaders[key] = val.map(String);\n } else {\n gsspExtraHeaders[key] = String(val);\n }\n }\n }\n // Collect font preloads early so ISR cached responses can include\n // the Link header (font preloads are module-level state that persists\n // across requests after the font modules are first loaded).\n let earlyFontLinkHeader = \"\";\n try {\n const earlyPreloads: Array<{ href: string; type: string }> = [];\n const fontGoogleEarly = await server.ssrLoadModule(\"next/font/google\");\n if (typeof fontGoogleEarly.getSSRFontPreloads === \"function\") {\n earlyPreloads.push(...fontGoogleEarly.getSSRFontPreloads());\n }\n const fontLocalEarly = await server.ssrLoadModule(\"next/font/local\");\n if (typeof fontLocalEarly.getSSRFontPreloads === \"function\") {\n earlyPreloads.push(...fontLocalEarly.getSSRFontPreloads());\n }\n if (earlyPreloads.length > 0) {\n earlyFontLinkHeader = earlyPreloads\n .map((p) => `<${p.href}>; rel=preload; as=font; type=${p.type}; crossorigin`)\n .join(\", \");\n }\n } catch {\n // Font modules not loaded yet — skip\n }\n\n if (typeof pageModule.getStaticProps === \"function\") {\n // Check ISR cache before calling getStaticProps\n const cacheKey = isrCacheKey(\"pages\", url.split(\"?\")[0]);\n const cached = await isrGet(cacheKey);\n\n if (cached && !cached.isStale && cached.value.value?.kind === \"PAGES\") {\n // Fresh cache hit — serve directly\n const cachedPage = cached.value.value as CachedPagesValue;\n const cachedHtml = cachedPage.html;\n const transformedHtml = await server.transformIndexHtml(url, cachedHtml);\n const revalidateSecs = getRevalidateDuration(cacheKey) ?? 60;\n const hitHeaders: Record<string, string> = {\n \"Content-Type\": \"text/html\",\n \"X-Vinext-Cache\": \"HIT\",\n \"Cache-Control\": `s-maxage=${revalidateSecs}, stale-while-revalidate`,\n };\n if (earlyFontLinkHeader) hitHeaders[\"Link\"] = earlyFontLinkHeader;\n res.writeHead(200, hitHeaders);\n res.end(transformedHtml);\n return;\n }\n\n if (cached && cached.isStale && cached.value.value?.kind === \"PAGES\") {\n // Stale hit — serve stale immediately, trigger background regen\n const cachedPage = cached.value.value as CachedPagesValue;\n const cachedHtml = cachedPage.html;\n const transformedHtml = await server.transformIndexHtml(url, cachedHtml);\n\n // Trigger background regeneration: re-run getStaticProps and\n // update the cache so the next request is a HIT with fresh data.\n triggerBackgroundRegeneration(cacheKey, async () => {\n const freshResult = await pageModule.getStaticProps({ params });\n if (freshResult && \"props\" in freshResult) {\n const revalidate = typeof freshResult.revalidate === \"number\" ? freshResult.revalidate : 0;\n if (revalidate > 0) {\n await isrSet(cacheKey, buildPagesCacheValue(cachedHtml, freshResult.props), revalidate);\n }\n }\n });\n\n const revalidateSecs = getRevalidateDuration(cacheKey) ?? 60;\n const staleHeaders: Record<string, string> = {\n \"Content-Type\": \"text/html\",\n \"X-Vinext-Cache\": \"STALE\",\n \"Cache-Control\": `s-maxage=${revalidateSecs}, stale-while-revalidate`,\n };\n if (earlyFontLinkHeader) staleHeaders[\"Link\"] = earlyFontLinkHeader;\n res.writeHead(200, staleHeaders);\n res.end(transformedHtml);\n return;\n }\n\n // Cache miss — call getStaticProps normally\n const context = {\n params,\n locale: locale ?? i18nConfig?.defaultLocale,\n locales: i18nConfig?.locales,\n defaultLocale: i18nConfig?.defaultLocale,\n };\n const result = await pageModule.getStaticProps(context);\n if (result && \"props\" in result) {\n pageProps = result.props;\n }\n if (result && \"redirect\" in result) {\n const { redirect } = result;\n const status = redirect.statusCode ?? (redirect.permanent ? 308 : 307);\n // Sanitize destination to prevent open redirect via protocol-relative URLs.\n // Also normalize backslashes — browsers treat \\ as / in URL contexts.\n let dest = redirect.destination;\n if (!dest.startsWith(\"http://\") && !dest.startsWith(\"https://\")) {\n dest = dest.replace(/^[\\\\/]+/, \"/\");\n }\n res.writeHead(status, {\n Location: dest,\n });\n res.end();\n return;\n }\n if (result && \"notFound\" in result && result.notFound) {\n await renderErrorPage(server, req, res, url, pagesDir, 404, routerShim.wrapWithRouterContext);\n return;\n }\n\n // Extract revalidate period for ISR caching after render\n if (typeof result?.revalidate === \"number\" && result.revalidate > 0) {\n isrRevalidateSeconds = result.revalidate;\n }\n }\n\n // Try to load _app.tsx if it exists\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n let AppComponent: any = null;\n const appPath = path.join(pagesDir, \"_app\");\n if (findFileWithExtensions(appPath, matcher)) {\n try {\n const appModule = await server.ssrLoadModule(appPath);\n AppComponent = appModule.default ?? null;\n } catch {\n // _app exists but failed to load\n }\n }\n\n // React and ReactDOMServer are imported at the top level as native Node\n // modules. They must NOT go through Vite's SSR module runner because\n // React is CJS and the ESModulesEvaluator doesn't define `module`.\n const createElement = React.createElement;\n let element: React.ReactElement;\n\n // wrapWithRouterContext wraps the element in RouterContext.Provider so that\n // next/compat/router's useRouter() returns the real router.\n const wrapWithRouterContext = routerShim.wrapWithRouterContext;\n\n if (AppComponent) {\n element = createElement(AppComponent, {\n Component: PageComponent,\n pageProps,\n });\n } else {\n element = createElement(PageComponent, pageProps);\n }\n\n if (wrapWithRouterContext) {\n element = wrapWithRouterContext(element);\n }\n\n // Reset SSR head collector before rendering so <Head> tags are captured\n const headShim = await server.ssrLoadModule(\"next/head\");\n if (typeof headShim.resetSSRHead === \"function\") {\n headShim.resetSSRHead();\n }\n\n // Flush any pending dynamic() preloads so components are ready\n const dynamicShim = await server.ssrLoadModule(\"next/dynamic\");\n if (typeof dynamicShim.flushPreloads === \"function\") {\n await dynamicShim.flushPreloads();\n }\n\n // Collect any <Head> tags that were rendered during data fetching\n // (shell head tags — Suspense children's head tags arrive late,\n // matching Next.js behavior)\n\n // Collect SSR font links (Google Fonts <link> tags) and font class styles\n let fontHeadHTML = \"\";\n const allFontStyles: string[] = [];\n const allFontPreloads: Array<{ href: string; type: string }> = [];\n try {\n const fontGoogle = await server.ssrLoadModule(\"next/font/google\");\n if (typeof fontGoogle.getSSRFontLinks === \"function\") {\n const fontUrls = fontGoogle.getSSRFontLinks();\n for (const fontUrl of fontUrls) {\n const safeFontUrl = fontUrl.replace(/&/g, \"&amp;\").replace(/\"/g, \"&quot;\");\n fontHeadHTML += `<link rel=\"stylesheet\" href=\"${safeFontUrl}\" />\\n `;\n }\n }\n if (typeof fontGoogle.getSSRFontStyles === \"function\") {\n allFontStyles.push(...fontGoogle.getSSRFontStyles());\n }\n // Collect preloads from self-hosted Google fonts\n if (typeof fontGoogle.getSSRFontPreloads === \"function\") {\n allFontPreloads.push(...fontGoogle.getSSRFontPreloads());\n }\n } catch {\n // next/font/google not used — skip\n }\n try {\n const fontLocal = await server.ssrLoadModule(\"next/font/local\");\n if (typeof fontLocal.getSSRFontStyles === \"function\") {\n allFontStyles.push(...fontLocal.getSSRFontStyles());\n }\n // Collect preloads from local font files\n if (typeof fontLocal.getSSRFontPreloads === \"function\") {\n allFontPreloads.push(...fontLocal.getSSRFontPreloads());\n }\n } catch {\n // next/font/local not used — skip\n }\n // Emit <link rel=\"preload\"> for all collected font files (Google + local)\n for (const { href, type } of allFontPreloads) {\n // Escape href/type to prevent HTML attribute injection (defense-in-depth;\n // Vite-resolved asset paths should never contain special chars).\n const safeHref = href.replace(/&/g, \"&amp;\").replace(/\"/g, \"&quot;\");\n const safeType = type.replace(/&/g, \"&amp;\").replace(/\"/g, \"&quot;\");\n fontHeadHTML += `<link rel=\"preload\" href=\"${safeHref}\" as=\"font\" type=\"${safeType}\" crossorigin />\\n `;\n }\n if (allFontStyles.length > 0) {\n fontHeadHTML += `<style data-vinext-fonts>${allFontStyles.join(\"\\n\")}</style>\\n `;\n }\n\n // Convert absolute file paths to Vite-servable URLs (relative to root)\n const viteRoot = server.config.root;\n const pageModuleUrl = \"/\" + path.relative(viteRoot, route.filePath);\n const appModuleUrl = AppComponent\n ? \"/\" + path.relative(viteRoot, path.join(pagesDir, \"_app\"))\n : null;\n\n // Hydration entry: inline script that imports the page and hydrates.\n // Stores the React root and page loader for client-side navigation.\n const hydrationScript = `\n<script type=\"module\">\nimport React from \"react\";\nimport { hydrateRoot } from \"react-dom/client\";\nimport { wrapWithRouterContext } from \"next/router\";\n\nconst nextData = window.__NEXT_DATA__;\nconst { pageProps } = nextData.props;\n\nasync function hydrate() {\n const pageModule = await import(\"${pageModuleUrl}\");\n const PageComponent = pageModule.default;\n let element;\n ${\n appModuleUrl\n ? `\n const appModule = await import(\"${appModuleUrl}\");\n const AppComponent = appModule.default;\n window.__VINEXT_APP__ = AppComponent;\n element = React.createElement(AppComponent, { Component: PageComponent, pageProps });\n `\n : `\n element = React.createElement(PageComponent, pageProps);\n `\n }\n element = wrapWithRouterContext(element);\n const root = hydrateRoot(document.getElementById(\"__next\"), element);\n window.__VINEXT_ROOT__ = root;\n}\nhydrate();\n</script>`;\n\n const nextDataScript = `<script>window.__NEXT_DATA__ = ${safeJsonStringify({\n props: { pageProps },\n page: patternToNextFormat(route.pattern),\n query: params,\n isFallback: false,\n locale: locale ?? i18nConfig?.defaultLocale,\n locales: i18nConfig?.locales,\n defaultLocale: i18nConfig?.defaultLocale,\n // Include module URLs so client navigation can import pages directly\n __vinext: {\n pageModuleUrl,\n appModuleUrl,\n },\n })}${i18nConfig ? `;window.__VINEXT_LOCALE__=${safeJsonStringify(locale ?? i18nConfig.defaultLocale)};window.__VINEXT_LOCALES__=${safeJsonStringify(i18nConfig.locales)};window.__VINEXT_DEFAULT_LOCALE__=${safeJsonStringify(i18nConfig.defaultLocale)}` : \"\"}</script>`;\n\n // Try to load custom _document.tsx\n const docPath = path.join(pagesDir, \"_document\");\n let DocumentComponent: any = null;\n if (findFileWithExtensions(docPath, matcher)) {\n try {\n const docModule = await server.ssrLoadModule(docPath);\n DocumentComponent = docModule.default ?? null;\n } catch {\n // _document exists but failed to load\n }\n }\n\n const allScripts = `${nextDataScript}\\n ${hydrationScript}`;\n\n // Build response headers: start with gSSP headers, then layer on\n // ISR and font preload headers (which take precedence).\n const extraHeaders: Record<string, string | string[]> = { ...gsspExtraHeaders };\n if (isrRevalidateSeconds) {\n extraHeaders[\"Cache-Control\"] = `s-maxage=${isrRevalidateSeconds}, stale-while-revalidate`;\n extraHeaders[\"X-Vinext-Cache\"] = \"MISS\";\n }\n\n // Set HTTP Link header for font preloading.\n // This lets the browser (and CDN) start fetching font files before parsing HTML.\n if (allFontPreloads.length > 0) {\n extraHeaders[\"Link\"] = allFontPreloads\n .map((p) => `<${p.href}>; rel=preload; as=font; type=${p.type}; crossorigin`)\n .join(\", \");\n }\n\n // Stream the page using progressive SSR.\n // The shell (layouts, non-suspended content) arrives immediately.\n // Suspense content streams in as it resolves.\n await streamPageToResponse(res, element, {\n url,\n server,\n fontHeadHTML,\n scripts: allScripts,\n DocumentComponent,\n statusCode,\n extraHeaders,\n // Collect head HTML AFTER the shell renders (inside streamPageToResponse,\n // after renderToReadableStream resolves). Head tags from Suspense\n // children arrive late — this matches Next.js behavior.\n getHeadHTML: () => typeof headShim.getSSRHeadHTML === \"function\"\n ? headShim.getSSRHeadHTML()\n : \"\",\n });\n _renderEnd = now();\n\n // Clear SSR context after rendering\n if (typeof routerShim.setSSRContext === \"function\") {\n routerShim.setSSRContext(null);\n }\n\n // If ISR is enabled, we need the full HTML for caching.\n // For ISR, re-render synchronously to get the complete HTML string.\n // This runs after the stream is already sent, so it doesn't affect TTFB.\n if (isrRevalidateSeconds !== null && isrRevalidateSeconds > 0) {\n let isrElement = AppComponent\n ? createElement(AppComponent, { Component: pageModule.default, pageProps })\n : createElement(pageModule.default, pageProps);\n if (wrapWithRouterContext) {\n isrElement = wrapWithRouterContext(isrElement);\n }\n const isrBodyHtml = await renderToStringAsync(isrElement);\n const isrHtml = `<!DOCTYPE html><html><head></head><body><div id=\"__next\">${isrBodyHtml}</div>${allScripts}</body></html>`;\n const cacheKey = isrCacheKey(\"pages\", url.split(\"?\")[0]);\n await isrSet(\n cacheKey,\n buildPagesCacheValue(isrHtml, pageProps),\n isrRevalidateSeconds,\n );\n setRevalidateDuration(cacheKey, isrRevalidateSeconds);\n }\n } catch (e) {\n // Let Vite fix the stack trace for better dev experience\n server.ssrFixStacktrace(e as Error);\n console.error(e);\n // Report error via instrumentation hook if registered\n reportRequestError(\n e instanceof Error ? e : new Error(String(e)),\n {\n path: url,\n method: req.method ?? \"GET\",\n headers: Object.fromEntries(\n Object.entries(req.headers).map(([k, v]) => [k, Array.isArray(v) ? v.join(\", \") : String(v ?? \"\")]),\n ),\n },\n { routerKind: \"Pages Router\", routePath: route.pattern, routeType: \"render\" },\n ).catch(() => { /* ignore reporting errors */ });\n // Try to render custom 500 error page\n try {\n await renderErrorPage(server, req, res, url, pagesDir, 500, undefined, matcher);\n } catch (fallbackErr) {\n // If error page itself fails, fall back to plain text.\n // This is a dev-only code path (prod uses prod-server.ts), so\n // include the error message for debugging.\n res.statusCode = 500;\n res.end(`Internal Server Error: ${(fallbackErr as Error).message}`);\n }\n } finally {\n // Cleanup is handled by ALS scope unwinding —\n // each runWith*() scope is automatically cleaned up when it exits.\n }\n }) // end runWithFetchCache\n ) // end runWithPrivateCache\n ) // end _runWithCacheState\n ) // end runWithHeadState\n ); // end runWithRouterState\n };\n}\n\n/**\n * Render a custom error page (404.tsx, 500.tsx, or _error.tsx).\n *\n * Next.js resolution order:\n * - 404: pages/404.tsx -> pages/_error.tsx -> default\n * - 500: pages/500.tsx -> pages/_error.tsx -> default\n * - other: pages/_error.tsx -> default\n */\nasync function renderErrorPage(\n server: ViteDevServer,\n _req: IncomingMessage,\n res: ServerResponse,\n url: string,\n pagesDir: string,\n statusCode: number,\n wrapWithRouterContext?: ((el: React.ReactElement) => React.ReactElement) | null,\n fileMatcher?: ValidFileMatcher,\n): Promise<void> {\n const matcher = fileMatcher ?? createValidFileMatcher();\n // Try specific status page first, then _error, then fallback\n const candidates =\n statusCode === 404\n ? [\"404\", \"_error\"]\n : statusCode === 500\n ? [\"500\", \"_error\"]\n : [\"_error\"];\n\n for (const candidate of candidates) {\n try {\n const candidatePath = path.join(pagesDir, candidate);\n if (!findFileWithExtensions(candidatePath, matcher)) continue;\n\n const errorModule = await server.ssrLoadModule(candidatePath);\n const ErrorComponent = errorModule.default;\n if (!ErrorComponent) continue;\n\n // Try to load _app.tsx to wrap the error page\n let AppComponent: any = null;\n const appPathErr = path.join(pagesDir, \"_app\");\n if (findFileWithExtensions(appPathErr, matcher)) {\n try {\n const appModule = await server.ssrLoadModule(appPathErr);\n AppComponent = appModule.default ?? null;\n } catch {\n // _app exists but failed to load\n }\n }\n\n const createElement = React.createElement;\n const errorProps = { statusCode };\n\n // If the caller didn't supply wrapWithRouterContext, load it now.\n // ssrLoadModule caches internally so the cost is negligible.\n let wrapFn = wrapWithRouterContext;\n if (!wrapFn) {\n try {\n const errRouterShim = await server.ssrLoadModule(\"next/router\");\n wrapFn = errRouterShim.wrapWithRouterContext;\n } catch {\n // router shim not available — continue without it\n }\n }\n\n let element: React.ReactElement;\n if (AppComponent) {\n element = createElement(AppComponent, {\n Component: ErrorComponent,\n pageProps: errorProps,\n });\n } else {\n element = createElement(ErrorComponent, errorProps);\n }\n\n if (wrapFn) {\n element = wrapFn(element);\n }\n\n const bodyHtml = await renderToStringAsync(element);\n\n // Try custom _document\n let html: string;\n let DocumentComponent: any = null;\n const docPathErr = path.join(pagesDir, \"_document\");\n if (findFileWithExtensions(docPathErr, matcher)) {\n try {\n const docModule = await server.ssrLoadModule(docPathErr);\n DocumentComponent = docModule.default ?? null;\n } catch {\n // _document exists but failed to load\n }\n }\n\n if (DocumentComponent) {\n const docElement = createElement(DocumentComponent);\n let docHtml = await renderToStringAsync(docElement);\n docHtml = docHtml.replace(\"__NEXT_MAIN__\", bodyHtml);\n docHtml = docHtml.replace(\"<!-- __NEXT_SCRIPTS__ -->\", \"\");\n html = docHtml;\n } else {\n html = `<!DOCTYPE html>\n<html>\n<head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n</head>\n<body>\n <div id=\"__next\">${bodyHtml}</div>\n</body>\n</html>`;\n }\n\n const transformedHtml = await server.transformIndexHtml(url, html);\n res.writeHead(statusCode, { \"Content-Type\": \"text/html\" });\n res.end(transformedHtml);\n return;\n } catch {\n // This candidate doesn't exist, try next\n continue;\n }\n }\n\n // No custom error page found — use plain text fallback\n res.writeHead(statusCode, { \"Content-Type\": \"text/plain\" });\n res.end(`${statusCode} - ${statusCode === 404 ? \"Page not found\" : \"Internal Server Error\"}`);\n}\n\n\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"prod-server.d.ts","sourceRoot":"","sources":["../../src/server/prod-server.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AACH,OAAO,EAAgB,KAAK,eAAe,EAAE,KAAK,cAAc,EAAE,MAAM,WAAW,CAAC;AAuBpF,MAAM,WAAW,iBAAiB;IAChC,wBAAwB;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,sBAAsB;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,yCAAyC;IACzC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,2CAA2C;IAC3C,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,mDAAmD;AACnD,QAAA,MAAM,kBAAkB,aAetB,CAAC;AAEH,0GAA0G;AAC1G,QAAA,MAAM,kBAAkB,OAAO,CAAC;AAEhC;;;GAGG;AACH,iBAAS,iBAAiB,CAAC,GAAG,EAAE,eAAe,GAAG,IAAI,GAAG,MAAM,GAAG,SAAS,GAAG,IAAI,CAQjF;AAoBD;;;GAGG;AACH,iBAAS,cAAc,CACrB,GAAG,EAAE,eAAe,EACpB,GAAG,EAAE,cAAc,EACnB,IAAI,EAAE,MAAM,GAAG,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,EAClB,YAAY,GAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAM,EACzC,QAAQ,GAAE,OAAc,GACvB,IAAI,CAkCN;AA0FD;;;;;;;;;;;GAWG;AACH,iBAAS,WAAW,CAAC,GAAG,EAAE,eAAe,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAcnE;AAED,4EAA4E;AAC5E,QAAA,MAAM,YAAY,EAAE,GAAG,CAAC,MAAM,CAK7B,CAAC;AAEF;;;;GAIG;AACH,QAAA,MAAM,UAAU,SAAkE,CAAC;AAEnF;;GAEG;AACH,iBAAS,gBAAgB,CAAC,GAAG,EAAE,eAAe,GAAG,OAAO,CAmCvD;AA+ED;;;;;GAKG;AACH,wBAAsB,eAAe,CAAC,OAAO,GAAE,iBAAsB,sFA6BpE;AAkhBD,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,EAAE,gBAAgB,EAAE,CAAC"}
1
+ {"version":3,"file":"prod-server.d.ts","sourceRoot":"","sources":["../../src/server/prod-server.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AACH,OAAO,EAAgB,KAAK,eAAe,EAAE,KAAK,cAAc,EAAE,MAAM,WAAW,CAAC;AAuBpF,MAAM,WAAW,iBAAiB;IAChC,wBAAwB;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,sBAAsB;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,yCAAyC;IACzC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,2CAA2C;IAC3C,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,mDAAmD;AACnD,QAAA,MAAM,kBAAkB,aAetB,CAAC;AAEH,0GAA0G;AAC1G,QAAA,MAAM,kBAAkB,OAAO,CAAC;AAEhC;;;GAGG;AACH,iBAAS,iBAAiB,CAAC,GAAG,EAAE,eAAe,GAAG,IAAI,GAAG,MAAM,GAAG,SAAS,GAAG,IAAI,CAQjF;AAoBD;;;GAGG;AACH,iBAAS,cAAc,CACrB,GAAG,EAAE,eAAe,EACpB,GAAG,EAAE,cAAc,EACnB,IAAI,EAAE,MAAM,GAAG,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,EAClB,YAAY,GAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAM,EACzC,QAAQ,GAAE,OAAc,GACvB,IAAI,CAkCN;AAkGD;;;;;;;;;;;GAWG;AACH,iBAAS,WAAW,CAAC,GAAG,EAAE,eAAe,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAcnE;AAED,4EAA4E;AAC5E,QAAA,MAAM,YAAY,EAAE,GAAG,CAAC,MAAM,CAK7B,CAAC;AAEF;;;;GAIG;AACH,QAAA,MAAM,UAAU,SAAkE,CAAC;AAEnF;;GAEG;AACH,iBAAS,gBAAgB,CAAC,GAAG,EAAE,eAAe,GAAG,OAAO,CAmCvD;AA+ED;;;;;GAKG;AACH,wBAAsB,eAAe,CAAC,OAAO,GAAE,iBAAsB,sFA6BpE;AAsiBD,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,EAAE,gBAAgB,EAAE,CAAC"}