You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement initial handler interface for pages routes (#79260)
Continuation of #78166 this
implements the `handler` interface for pages routes, This does not move
the response handling inside of the handler yet as that will be in a
follow-up PR to keep the changes isolated. This still returns the
`RenderResult` for the `base-server` to continue to handle.
Validated against `vercel/vercel` deploy tests here
vercel/vercel#13349
Copy file name to clipboardExpand all lines: packages/next/errors.json
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -678,11 +678,17 @@
678
678
"677": "`trackDynamicImport` should always receive a promise. Something went wrong in the dynamic imports transform.",
679
679
"678": "CacheSignal got more endRead() calls than beginRead() calls",
680
680
"679": "A CacheSignal cannot subscribe to itself",
681
-
"680": "CacheSignal cannot be used in the edge runtime, because `dynamicIO` does not support it.",
682
-
"681": "Dynamic imports should not be instrumented in the edge runtime, because `dynamicIO` doesn't support it",
683
-
"682": "\\`experimental.ppr\\` can not be \\`%s\\` when \\`experimental.dynamicIO\\` is \\`true\\`. PPR is implicitly enabled when Dynamic IO is enabled.",
684
-
"683": "The \\`compiler.define\\` option is configured to replace the \\`%s\\` variable. This variable is either part of a Next.js built-in or is already configured.",
685
-
"684": "The \\`compiler.defineServer\\` option is configured to replace the \\`%s\\` variable. This variable is either part of a Next.js built-in or is already configured.",
686
-
"685": "Accessed fallback \\`params\\` during prerendering.",
687
-
"686": "Expected clientReferenceManifest to be defined."
681
+
"680": "Invariant: missing result from invoking %s",
682
+
"681": "Invariant: missing result from invoking %s handler",
683
+
"682": "Invariant: missing result",
684
+
"683": "Invariant: missing result from ",
685
+
"684": "Invariant: missing result from ino",
686
+
"685": "CacheSignal cannot be used in the edge runtime, because `dynamicIO` does not support it.",
687
+
"686": "\\`experimental.ppr\\` can not be \\`%s\\` when \\`experimental.dynamicIO\\` is \\`true\\`. PPR is implicitly enabled when Dynamic IO is enabled.",
688
+
"687": "Dynamic imports should not be instrumented in the edge runtime, because `dynamicIO` doesn't support it",
689
+
"688": "The \\`compiler.define\\` option is configured to replace the \\`%s\\` variable. This variable is either part of a Next.js built-in or is already configured.",
690
+
"689": "The \\`compiler.defineServer\\` option is configured to replace the \\`%s\\` variable. This variable is either part of a Next.js built-in or is already configured.",
691
+
"690": "Invariant: loadManifests called for edge runtime",
692
+
"691": "Accessed fallback \\`params\\` during prerendering.",
693
+
"692": "Expected clientReferenceManifest to be defined."
0 commit comments