Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Full page reload when navigating to new root layout #40751

Merged
merged 17 commits into from Sep 30, 2022

Conversation

hanneslund
Copy link
Contributor

@hanneslund hanneslund commented Sep 21, 2022

Finds the root layout segments for flight requests. If those segments doesn't match the FlightRouterState it's a new root layout and a full page reload is required.

Bug

  • Related issues linked using fixes #number
  • Integration tests added
  • Errors have a helpful link attached, see contributing.md

Feature

  • Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
  • Related issues linked using fixes #number
  • Integration tests added
  • Documentation added
  • Telemetry added. In case of a feature if it's used or not.
  • Errors have a helpful link attached, see contributing.md

Documentation / Examples

  • Make sure the linting passes by running pnpm lint
  • The "examples guidelines" are followed from our contributing doc

@ijjk
Copy link
Member

ijjk commented Sep 21, 2022

Failing test suites

Commit: e6a34a5

pnpm testheadless test/e2e/app-dir/prefetching.test.ts

  • app dir prefetching > should show layout eagerly when prefetched with loading one level down
Expand output

● app dir prefetching › should show layout eagerly when prefetched with loading one level down

expect(received).toBe(expected) // Object.is equality

Expected: true
Received: false

  43 |     const timeToComplete = after - before
  44 |
> 45 |     expect(timeToComplete < 1000).toBe(true)
     |                                   ^
  46 |
  47 |     expect(await browser.elementByCss('#dashboard-layout').text()).toBe(
  48 |       'Dashboard Hello World'

  at Object.<anonymous> (e2e/app-dir/prefetching.test.ts:45:35)

Read more about building and testing Next.js in contributing.md.

@ijjk
Copy link
Member

ijjk commented Sep 21, 2022

Stats from current PR

Default Build (Increase detected ⚠️)
General Overall increase ⚠️
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
buildDuration 31.2s 31.5s ⚠️ +374ms
buildDurationCached 8.4s 9s ⚠️ +606ms
nodeModulesSize 91.8 MB 91.9 MB ⚠️ +17.4 kB
nextStartRea..uration (ms) 279ms 291ms ⚠️ +12ms
nextDevReadyDuration 345ms 335ms -10ms
Page Load Tests Overall decrease ⚠️
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
/ failed reqs 0 0
/ total time (seconds) 9.904 10.688 ⚠️ +0.78
/ avg req/sec 252.43 233.91 ⚠️ -18.52
/error-in-render failed reqs 0 0
/error-in-render total time (seconds) 6.559 6.854 ⚠️ +0.29
/error-in-render avg req/sec 381.17 364.75 ⚠️ -16.42
Client Bundles (main, webpack) Overall decrease ✓
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
295.HASH.js gzip 179 B 179 B
350-HASH.js gzip 12.2 kB 12.2 kB ⚠️ +1 B
app-internal..HASH.js gzip 409 B 406 B -3 B
framework-HASH.js gzip 48.7 kB 48.7 kB
main-app-HASH.js gzip 3.95 kB 3.95 kB ⚠️ +2 B
main-HASH.js gzip 31 kB 31 kB -15 B
webpack-HASH.js gzip 1.73 kB 1.73 kB ⚠️ +1 B
Overall change 98.2 kB 98.2 kB -14 B
Legacy Client Bundles (polyfills)
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
polyfills-HASH.js gzip 31 kB 31 kB
Overall change 31 kB 31 kB
Client Pages Overall decrease ✓
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
_app-HASH.js gzip 202 B 202 B
_error-HASH.js gzip 194 B 194 B
amp-HASH.js gzip 493 B 494 B ⚠️ +1 B
css-HASH.js gzip 327 B 326 B -1 B
dynamic-HASH.js gzip 2.03 kB 2.03 kB
edge-ssr-HASH.js gzip 271 B 272 B ⚠️ +1 B
head-HASH.js gzip 355 B 355 B
hooks-HASH.js gzip 800 B 800 B
image-HASH.js gzip 4.89 kB 4.89 kB -5 B
index-HASH.js gzip 262 B 262 B
link-HASH.js gzip 2.37 kB 2.36 kB -3 B
routerDirect..HASH.js gzip 321 B 321 B
script-HASH.js gzip 389 B 391 B ⚠️ +2 B
withRouter-HASH.js gzip 317 B 319 B ⚠️ +2 B
85e02e95b279..7e3.css gzip 107 B 107 B
Overall change 13.3 kB 13.3 kB -3 B
Client Build Manifests Overall decrease ✓
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
_buildManifest.js gzip 486 B 482 B -4 B
Overall change 486 B 482 B -4 B
Rendered Page Sizes Overall increase ⚠️
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
index.html gzip 512 B 512 B
link.html gzip 526 B 526 B
withRouter.html gzip 506 B 507 B ⚠️ +1 B
Overall change 1.54 kB 1.54 kB ⚠️ +1 B
Edge SSR bundle Size Overall increase ⚠️
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
edge-ssr.js gzip 61.2 kB 61.2 kB ⚠️ +6 B
page.js gzip 70.6 kB 70.8 kB ⚠️ +188 B
Overall change 132 kB 132 kB ⚠️ +194 B
Middleware size
vercel/next.js canary hanneslund/next.js mpa-nav-on-new-root-layout Change
middleware-b..fest.js gzip 609 B 605 B -4 B
middleware-r..fest.js gzip 143 B 145 B ⚠️ +2 B
middleware.js gzip 18.8 kB 18.8 kB ⚠️ +2 B
edge-runtime..pack.js gzip 1.83 kB 1.83 kB
Overall change 21.3 kB 21.3 kB

Diffs

Diff for page.js

Diff too large to display

Diff for middleware-b..-manifest.js
@@ -7,96 +7,96 @@ self.__BUILD_MANIFEST = {
     "static/BUILD_ID/_ssgManifest.js"
   ],
   rootMainFiles: [
-    "static/chunks/webpack-749ff960726a6ec5.js",
+    "static/chunks/webpack-5cb52a8f3c6ddd04.js",
     "static/chunks/framework-e2c409c40a52cf79.js",
-    "static/chunks/350-e014dc5dc9cc6f14.js",
-    "static/chunks/main-app-c997e89eafdc1e61.js"
+    "static/chunks/345-129ef97220d6a53b.js",
+    "static/chunks/main-app-53f9bdd1f2be1c6f.js"
   ],
   pages: {
     "/": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/index-b8264be54b448702.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/index-bec155e34f346b99.js"
     ],
     "/_app": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/_app-e01208b489d4dfb2.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/_app-c22e45536d5ed07d.js"
     ],
     "/_error": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/_error-c3cf91c64b29131e.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/_error-2b531c2af0cea1a5.js"
     ],
     "/amp": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/amp-70b7d5057eaf4dbb.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/amp-8f6577d8db1ae634.js"
     ],
     "/css": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
+      "static/chunks/main-3b362403fb14133b.js",
       "static/css/94fdbc56eafa2039.css",
-      "static/chunks/pages/css-9781215ba6119ce9.js"
+      "static/chunks/pages/css-46577de73ae6a249.js"
     ],
     "/dynamic": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/dynamic-2f1e25c0b2b53cd4.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/dynamic-878132b94e0ae92c.js"
     ],
     "/edge-ssr": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/edge-ssr-03858a80bb99d587.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/edge-ssr-ab019efd9cc3c28e.js"
     ],
     "/head": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/head-51dfd813cbbd85d9.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/head-bcd6c4213c1b0636.js"
     ],
     "/hooks": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/hooks-23ac495fdbc8a22e.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/hooks-bed41d9eaeaeb789.js"
     ],
     "/image": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/image-b18ccc7a6245c865.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/image-d530a8cdee0f89fc.js"
     ],
     "/link": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/link-71f4f1ad953cfc3c.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/link-f9f6d9934bc232d7.js"
     ],
     "/routerDirect": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/routerDirect-6ad7a67490f0be8f.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/routerDirect-e19eee60675967c6.js"
     ],
     "/script": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/script-3ab022bc9a42d3dc.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/script-e5e06f6e77695c1c.js"
     ],
     "/withRouter": [
-      "static/chunks/webpack-749ff960726a6ec5.js",
+      "static/chunks/webpack-5cb52a8f3c6ddd04.js",
       "static/chunks/framework-e2c409c40a52cf79.js",
-      "static/chunks/main-e2f6188183f8240d.js",
-      "static/chunks/pages/withRouter-69a99e823955bea2.js"
+      "static/chunks/main-3b362403fb14133b.js",
+      "static/chunks/pages/withRouter-1bcd129df025870a.js"
     ]
   },
   ampFirstPages: []
Diff for middleware-r..-manifest.js
@@ -1,6 +1,6 @@
 self.__REACT_LOADABLE_MANIFEST = {
   "dynamic.js -> ../components/hello": {
-    id: 1295,
-    files: ["static/chunks/295.5770ae49b7f0b762.js"]
+    id: 5483,
+    files: ["static/chunks/483.6925074e2e8025ef.js"]
   }
 };
Diff for middleware.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [826],
   {
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/build/webpack/loaders/next-middleware-loader.js?absolutePagePath=private-next-root-dir%2Fmiddleware.js&page=%2Fmiddleware&rootDir=%2Ftmp%2Fnext-stats%2Fstats-app&matchers=!": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/build/webpack/loaders/next-middleware-loader.js?absolutePagePath=private-next-root-dir%2Fmiddleware.js&page=%2Fmiddleware&rootDir=%2Ftmp%2Fnext-stats%2Fstats-app&matchers=!": /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -14,7 +14,7 @@
         /* harmony export */
       });
       /* harmony import */ var next_dist_server_web_adapter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/adapter.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/adapter.js"
       );
 
       (0,
@@ -58,7 +58,7 @@
         /* harmony export */
       });
       /* harmony import */ var next_server__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/server.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/server.js"
       );
       /* harmony import */ var next_server__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/ __webpack_require__.n(
         next_server__WEBPACK_IMPORTED_MODULE_0__
@@ -71,7 +71,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/get-hostname.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/get-hostname.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -94,7 +94,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -135,7 +135,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -170,7 +170,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-locale.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-locale.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -182,10 +182,10 @@
       });
       exports.addLocale = addLocale;
       var _addPathPrefix = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js"
       );
       var _pathHasPrefix = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
       );
       function addLocale(path, locale, defaultLocale, ignorePrefix) {
         if (
@@ -206,7 +206,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -218,7 +218,7 @@
       });
       exports.addPathPrefix = addPathPrefix;
       var _parsePath = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
       );
       function addPathPrefix(path, prefix) {
         if (!path.startsWith("/") || !prefix) {
@@ -231,7 +231,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -243,7 +243,7 @@
       });
       exports.addPathSuffix = addPathSuffix;
       var _parsePath = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
       );
       function addPathSuffix(path, suffix) {
         if (!path.startsWith("/") || !suffix) {
@@ -256,7 +256,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -268,16 +268,16 @@
       });
       exports.formatNextPathnameInfo = formatNextPathnameInfo;
       var _removeTrailingSlash = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js"
       );
       var _addPathPrefix = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js"
       );
       var _addPathSuffix = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js"
       );
       var _addLocale = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-locale.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/add-locale.js"
       );
       function formatNextPathnameInfo(info) {
         let pathname = (0, _addLocale).addLocale(
@@ -306,7 +306,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -318,13 +318,13 @@
       });
       exports.getNextPathnameInfo = getNextPathnameInfo;
       var _normalizeLocalePath = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js"
       );
       var _removePathPrefix = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js"
       );
       var _pathHasPrefix = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
       );
       function getNextPathnameInfo(pathname, options) {
         var _nextConfig;
@@ -375,7 +375,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/parse-path.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/parse-path.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -412,7 +412,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -424,7 +424,7 @@
       });
       exports.pathHasPrefix = pathHasPrefix;
       var _parsePath = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
       );
       function pathHasPrefix(path, prefix) {
         if (typeof path !== "string") {
@@ -437,7 +437,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/relativize-url.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/relativize-url.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -459,7 +459,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -471,7 +471,7 @@
       });
       exports.removePathPrefix = removePathPrefix;
       var _pathHasPrefix = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
       );
       function removePathPrefix(path, prefix) {
         if ((0, _pathHasPrefix).pathHasPrefix(path, prefix)) {
@@ -486,7 +486,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -503,7 +503,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/compiled/cookie/index.js": /***/ module => {
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/compiled/cookie/index.js": /***/ module => {
       var __dirname = "/";
       (() => {
         "use strict";
@@ -631,7 +631,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/compiled/ua-parser-js/ua-parser.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/compiled/ua-parser-js/ua-parser.js": /***/ (
       module,
       exports,
       __webpack_require__
@@ -1477,7 +1477,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/internal-utils.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/internal-utils.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -1522,7 +1522,7 @@
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/adapter.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/adapter.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -1537,28 +1537,28 @@
       exports.OT = blockUnallowedResponse;
       exports.gL = enhanceGlobals;
       var _error = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/error.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/error.js"
       );
       var _utils = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/utils.js"
       );
       var _fetchEvent = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/fetch-event.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/fetch-event.js"
       );
       var _request = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/request.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/request.js"
       );
       var _response = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/response.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/response.js"
       );
       var _relativizeUrl = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/relativize-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/relativize-url.js"
       );
       var _nextUrl = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/next-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/next-url.js"
       );
       var _internalUtils = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/internal-utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/internal-utils.js"
       );
       class NextRequestHint extends _request.NextRequest {
         constructor(params) {
@@ -1785,7 +1785,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/error.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/error.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -1829,7 +1829,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/next-url.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/next-url.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -1840,16 +1840,16 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
         value: true
       });
       var _detectDomainLocale = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js"
       );
       var _formatNextPathnameInfo = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js"
       );
       var _getHostname = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/get-hostname.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/get-hostname.js"
       );
       var _getNextPathnameInfo = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js"
       );
       const REGEX_LOCALHOST_HOSTNAME = /(?!^https?:\/\/)(127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|::1|localhost)/;
       function parseURL(url, base) {
@@ -2075,7 +2075,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/cookies.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/cookies.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -2087,7 +2087,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       });
       var _cookie = _interopRequireDefault(
         __webpack_require__(
-          "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/compiled/cookie/index.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/compiled/cookie/index.js"
         )
       );
       function _interopRequireDefault(obj) {
@@ -2224,7 +2224,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/fetch-event.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/fetch-event.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -2236,7 +2236,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       });
       exports.waitUntilSymbol = void 0;
       var _error = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/error.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/error.js"
       );
       const responseSymbol = Symbol("response");
       const passThroughSymbol = Symbol("passThrough");
@@ -2290,7 +2290,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/request.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/request.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -2302,16 +2302,16 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       });
       exports.INTERNALS = void 0;
       var _nextUrl = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/next-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/next-url.js"
       );
       var _utils = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/utils.js"
       );
       var _error = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/error.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/error.js"
       );
       var _cookies = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/cookies.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/cookies.js"
       );
       const INTERNALS = Symbol("internal request");
       exports.INTERNALS = INTERNALS;
@@ -2393,7 +2393,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/response.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/response.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -2404,13 +2404,13 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
         value: true
       });
       var _nextUrl = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/next-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/next-url.js"
       );
       var _utils = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/utils.js"
       );
       var _cookies = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/cookies.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/cookies.js"
       );
       const INTERNALS = Symbol("internal response");
       const REDIRECTS = new Set([301, 302, 303, 307, 308]);
@@ -2501,7 +2501,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/user-agent.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/user-agent.js": /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -2517,7 +2517,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       exports.WE = userAgent;
       var _uaParserJs = _interopRequireDefault(
         __webpack_require__(
-          "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/compiled/ua-parser-js/ua-parser.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/compiled/ua-parser-js/ua-parser.js"
         )
       );
       function _interopRequireDefault(obj) {
@@ -2547,7 +2547,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/utils.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/utils.js": /***/ (
       __unused_webpack_module,
       exports
     ) => {
@@ -2665,23 +2665,23 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
       /***/
     },
 
-    /***/ "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/server.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/server.js": /***/ (
       module,
       exports,
       __webpack_require__
     ) => {
       const serverExports = {
         NextRequest: __webpack_require__(
-          "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/request.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/request.js"
         ).NextRequest,
         NextResponse: __webpack_require__(
-          "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/response.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/response.js"
         ).NextResponse,
         userAgentFromString: __webpack_require__(
-          "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/user-agent.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/user-agent.js"
         ) /* .userAgentFromString */.Nf,
         userAgent: __webpack_require__(
-          "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/user-agent.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/server/web/spec-extension/user-agent.js"
         ) /* .userAgent */.WE
       };
 
@@ -2709,7 +2709,7 @@ Learn More: https://nextjs.org/docs/messages/node-module-in-edge-runtime`;
     /******/ var __webpack_exec__ = moduleId =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ var __webpack_exports__ = __webpack_exec__(
-      "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/build/webpack/loaders/next-middleware-loader.js?absolutePagePath=private-next-root-dir%2Fmiddleware.js&page=%2Fmiddleware&rootDir=%2Ftmp%2Fnext-stats%2Fstats-app&matchers=!"
+      "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_a7bikdx6mdv7m5keg26qry3yne/node_modules/next/dist/build/webpack/loaders/next-middleware-loader.js?absolutePagePath=private-next-root-dir%2Fmiddleware.js&page=%2Fmiddleware&rootDir=%2Ftmp%2Fnext-stats%2Fstats-app&matchers=!"
     );
     /******/ (_ENTRIES =
       typeof _ENTRIES === "undefined"
Diff for edge-ssr.js

Diff too large to display

Diff for _buildManifest.js
@@ -1,28 +1,28 @@
 self.__BUILD_MANIFEST = {
   __rewrites: { beforeFiles: [], afterFiles: [], fallback: [] },
-  "/": ["static\u002Fchunks\u002Fpages\u002Findex-b8264be54b448702.js"],
-  "/_error": ["static\u002Fchunks\u002Fpages\u002F_error-c3cf91c64b29131e.js"],
-  "/amp": ["static\u002Fchunks\u002Fpages\u002Famp-70b7d5057eaf4dbb.js"],
+  "/": ["static\u002Fchunks\u002Fpages\u002Findex-bec155e34f346b99.js"],
+  "/_error": ["static\u002Fchunks\u002Fpages\u002F_error-2b531c2af0cea1a5.js"],
+  "/amp": ["static\u002Fchunks\u002Fpages\u002Famp-8f6577d8db1ae634.js"],
   "/css": [
     "static\u002Fcss\u002F94fdbc56eafa2039.css",
-    "static\u002Fchunks\u002Fpages\u002Fcss-9781215ba6119ce9.js"
+    "static\u002Fchunks\u002Fpages\u002Fcss-46577de73ae6a249.js"
   ],
   "/dynamic": [
-    "static\u002Fchunks\u002Fpages\u002Fdynamic-2f1e25c0b2b53cd4.js"
+    "static\u002Fchunks\u002Fpages\u002Fdynamic-878132b94e0ae92c.js"
   ],
   "/edge-ssr": [
-    "static\u002Fchunks\u002Fpages\u002Fedge-ssr-03858a80bb99d587.js"
+    "static\u002Fchunks\u002Fpages\u002Fedge-ssr-ab019efd9cc3c28e.js"
   ],
-  "/head": ["static\u002Fchunks\u002Fpages\u002Fhead-51dfd813cbbd85d9.js"],
-  "/hooks": ["static\u002Fchunks\u002Fpages\u002Fhooks-23ac495fdbc8a22e.js"],
-  "/image": ["static\u002Fchunks\u002Fpages\u002Fimage-b18ccc7a6245c865.js"],
-  "/link": ["static\u002Fchunks\u002Fpages\u002Flink-71f4f1ad953cfc3c.js"],
+  "/head": ["static\u002Fchunks\u002Fpages\u002Fhead-bcd6c4213c1b0636.js"],
+  "/hooks": ["static\u002Fchunks\u002Fpages\u002Fhooks-bed41d9eaeaeb789.js"],
+  "/image": ["static\u002Fchunks\u002Fpages\u002Fimage-d530a8cdee0f89fc.js"],
+  "/link": ["static\u002Fchunks\u002Fpages\u002Flink-f9f6d9934bc232d7.js"],
   "/routerDirect": [
-    "static\u002Fchunks\u002Fpages\u002FrouterDirect-6ad7a67490f0be8f.js"
+    "static\u002Fchunks\u002Fpages\u002FrouterDirect-e19eee60675967c6.js"
   ],
-  "/script": ["static\u002Fchunks\u002Fpages\u002Fscript-3ab022bc9a42d3dc.js"],
+  "/script": ["static\u002Fchunks\u002Fpages\u002Fscript-e5e06f6e77695c1c.js"],
   "/withRouter": [
-    "static\u002Fchunks\u002Fpages\u002FwithRouter-69a99e823955bea2.js"
+    "static\u002Fchunks\u002Fpages\u002FwithRouter-1bcd129df025870a.js"
   ],
   sortedPages: [
     "\u002F",
Diff for _app-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [888],
   {
-    /***/ 3950: /***/ function(
+    /***/ 8794: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/_app",
         function() {
-          return __webpack_require__(7862);
+          return __webpack_require__(2970);
         }
       ]);
       if (false) {
@@ -24,7 +24,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 179], function() {
-      return __webpack_exec__(3950), __webpack_exec__(3844);
+      return __webpack_exec__(8794), __webpack_exec__(7852);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for _error-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [820],
   {
-    /***/ 312: /***/ function(
+    /***/ 3207: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/_error",
         function() {
-          return __webpack_require__(5203);
+          return __webpack_require__(6871);
         }
       ]);
       if (false) {
@@ -24,7 +24,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [888, 774, 179], function() {
-      return __webpack_exec__(312);
+      return __webpack_exec__(3207);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for amp-HASH.js
@@ -1,17 +1,17 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [216],
   {
-    /***/ 5185: /***/ function(
+    /***/ 5110: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = __webpack_require__(5956);
+      module.exports = __webpack_require__(4869);
 
       /***/
     },
 
-    /***/ 9208: /***/ function(
+    /***/ 4722: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -19,7 +19,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/amp",
         function() {
-          return __webpack_require__(7356);
+          return __webpack_require__(9655);
         }
       ]);
       if (false) {
@@ -28,7 +28,7 @@
       /***/
     },
 
-    /***/ 5956: /***/ function(module, exports, __webpack_require__) {
+    /***/ 4869: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -38,8 +38,8 @@
       var _interop_require_default = __webpack_require__(7022) /* ["default"] */
         .Z;
       var _react = _interop_require_default(__webpack_require__(831));
-      var _ampContext = __webpack_require__(3658);
-      var _ampMode = __webpack_require__(7509);
+      var _ampContext = __webpack_require__(1437);
+      var _ampMode = __webpack_require__(8575);
       function useAmp() {
         // Don't assign the context value to a variable to save bytes
         return (0, _ampMode).isInAmpMode(
@@ -61,7 +61,7 @@
       /***/
     },
 
-    /***/ 7356: /***/ function(
+    /***/ 9655: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -78,7 +78,7 @@
         /* harmony export */
       });
       /* harmony import */ var next_amp__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
-        5185
+        5110
       );
       /* harmony import */ var next_amp__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/ __webpack_require__.n(
         next_amp__WEBPACK_IMPORTED_MODULE_0__
@@ -102,7 +102,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [888, 774, 179], function() {
-      return __webpack_exec__(9208);
+      return __webpack_exec__(4722);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for css-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [706],
   {
-    /***/ 9339: /***/ function(
+    /***/ 1214: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/css",
         function() {
-          return __webpack_require__(1738);
+          return __webpack_require__(4524);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 1738: /***/ function(
+    /***/ 4524: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -29,7 +29,7 @@
         9943
       );
       /* harmony import */ var _css_module_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        568
+        9343
       );
       /* harmony import */ var _css_module_css__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(
         _css_module_css__WEBPACK_IMPORTED_MODULE_1__
@@ -48,7 +48,7 @@
       /***/
     },
 
-    /***/ 568: /***/ function(module) {
+    /***/ 9343: /***/ function(module) {
       // extracted by mini-css-extract-plugin
       module.exports = { helloWorld: "css_helloWorld__qqNwY" };
 
@@ -61,7 +61,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(9339);
+      return __webpack_exec__(1214);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for dynamic-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [739],
   {
-    /***/ 9314: /***/ function(
+    /***/ 4590: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/dynamic",
         function() {
-          return __webpack_require__(488);
+          return __webpack_require__(215);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 7286: /***/ function(module, exports, __webpack_require__) {
+    /***/ 5485: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -34,7 +34,7 @@
       var _interop_require_default = __webpack_require__(7022) /* ["default"] */
         .Z;
       var _react = _interop_require_default(__webpack_require__(831));
-      var _loadable = _interop_require_default(__webpack_require__(9940));
+      var _loadable = _interop_require_default(__webpack_require__(5345));
       function dynamic(dynamicOptions, options) {
         var loadableFn = _loadable.default;
         var loadableOptions = (options == null
@@ -138,7 +138,7 @@
       /***/
     },
 
-    /***/ 1089: /***/ function(
+    /***/ 2074: /***/ function(
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -160,7 +160,7 @@
       /***/
     },
 
-    /***/ 9940: /***/ function(
+    /***/ 5345: /***/ function(
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -180,7 +180,7 @@
       var _interop_require_default = __webpack_require__(7022) /* ["default"] */
         .Z;
       var _react = _interop_require_default(__webpack_require__(831));
-      var _loadableContext = __webpack_require__(1089);
+      var _loadableContext = __webpack_require__(2074);
       var useSyncExternalStore = (true ? __webpack_require__(831) : 0)
         .useSyncExternalStore;
       var ALL_INITIALIZERS = [];
@@ -494,7 +494,7 @@
       /***/
     },
 
-    /***/ 488: /***/ function(
+    /***/ 215: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -511,7 +511,7 @@
         9943
       );
       /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        4358
+        2745
       );
       /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(
         next_dynamic__WEBPACK_IMPORTED_MODULE_1__
@@ -520,13 +520,13 @@
       var DynamicHello = next_dynamic__WEBPACK_IMPORTED_MODULE_1___default()(
         function() {
           return __webpack_require__
-            .e(/* import() */ 295)
-            .then(__webpack_require__.bind(__webpack_require__, 1295));
+            .e(/* import() */ 483)
+            .then(__webpack_require__.bind(__webpack_require__, 5483));
         },
         {
           loadableGenerated: {
             webpack: function() {
-              return [/*require.resolve*/ 1295];
+              return [/*require.resolve*/ 5483];
             }
           }
         }
@@ -556,12 +556,12 @@
       /***/
     },
 
-    /***/ 4358: /***/ function(
+    /***/ 2745: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = __webpack_require__(7286);
+      module.exports = __webpack_require__(5485);
 
       /***/
     }
@@ -572,7 +572,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(9314);
+      return __webpack_exec__(4590);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for edge-ssr-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [800],
   {
-    /***/ 4338: /***/ function(
+    /***/ 3165: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/edge-ssr",
         function() {
-          return __webpack_require__(391);
+          return __webpack_require__(746);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 391: /***/ function(
+    /***/ 746: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -50,7 +50,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [888, 774, 179], function() {
-      return __webpack_exec__(4338);
+      return __webpack_exec__(3165);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for head-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [645],
   {
-    /***/ 7606: /***/ function(
+    /***/ 22: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/head",
         function() {
-          return __webpack_require__(3537);
+          return __webpack_require__(5661);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 3537: /***/ function(
+    /***/ 5661: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -35,7 +35,7 @@
         9943
       );
       /* harmony import */ var next_head__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        9781
+        8076
       );
       /* harmony import */ var next_head__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(
         next_head__WEBPACK_IMPORTED_MODULE_1__
@@ -71,12 +71,12 @@
       /***/
     },
 
-    /***/ 9781: /***/ function(
+    /***/ 8076: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = __webpack_require__(3738);
+      module.exports = __webpack_require__(6856);
 
       /***/
     }
@@ -87,7 +87,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(7606);
+      return __webpack_exec__(22);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for hooks-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [757],
   {
-    /***/ 5098: /***/ function(
+    /***/ 8393: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/hooks",
         function() {
-          return __webpack_require__(6994);
+          return __webpack_require__(9926);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 6994: /***/ function(
+    /***/ 9926: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -132,7 +132,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(5098);
+      return __webpack_exec__(8393);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for image-HASH.js
@@ -26,7 +26,7 @@
       /***/
     },
 
-    /***/ 9090: /***/ function(
+    /***/ 5233: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -34,7 +34,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/image",
         function() {
-          return __webpack_require__(7071);
+          return __webpack_require__(1534);
         }
       ]);
       if (false) {
@@ -43,7 +43,7 @@
       /***/
     },
 
-    /***/ 8764: /***/ function(module, exports, __webpack_require__) {
+    /***/ 1795: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -66,12 +66,12 @@
         5997
       ) /* ["default"] */.Z;
       var _react = _interop_require_wildcard(__webpack_require__(831));
-      var _head = _interop_require_default(__webpack_require__(3738));
-      var _imageConfig = __webpack_require__(6820);
-      var _useIntersection = __webpack_require__(4834);
-      var _imageConfigContext = __webpack_require__(7495);
-      var _utils = __webpack_require__(2216);
-      var _normalizeTrailingSlash = __webpack_require__(4757);
+      var _head = _interop_require_default(__webpack_require__(6856));
+      var _imageConfig = __webpack_require__(6683);
+      var _useIntersection = __webpack_require__(2684);
+      var _imageConfigContext = __webpack_require__(5250);
+      var _utils = __webpack_require__(3599);
+      var _normalizeTrailingSlash = __webpack_require__(142);
       function Image(_param) {
         var src = _param.src,
           sizes = _param.sizes,
@@ -929,7 +929,7 @@
       /***/
     },
 
-    /***/ 4834: /***/ function(module, exports, __webpack_require__) {
+    /***/ 2684: /***/ function(module, exports, __webpack_r
Post job cleanup.
[command]/usr/bin/git version
git version 2.37.3
Temporarily overriding HOME='/home/runner/work/_temp/d754a0e8-5c14-4c40-9c87-81364efbaf40' before making global git config changes
Adding repository directory to the temporary git global config as a safe directory
[command]/usr/bin/git config --global --add safe.directory /home/runner/work/next.js/next.js
[command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
[command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
[command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
http.https://github.com/.extraheader
[command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
[command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
Cleaning up orphan processes
Commit: a57f4e23db912711962ce943f359b76bd23548c4

@hanneslund hanneslund marked this pull request as ready for review September 29, 2022 12:13
ijjk
ijjk previously approved these changes Sep 30, 2022
@kodiakhq kodiakhq bot merged commit 93ff04b into vercel:canary Sep 30, 2022
@hanneslund hanneslund deleted the mpa-nav-on-new-root-layout branch October 1, 2022 10:18
BowlingX pushed a commit to BowlingX/next.js that referenced this pull request Oct 5, 2022
Finds the root layout segments for flight requests. If those segments doesn't match the FlightRouterState it's a new root layout and a full page reload is required.

## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have a helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm lint`
- [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)


Co-authored-by: Tim Neutkens <6324199+timneutkens@users.noreply.github.com>
Kikobeats pushed a commit to Kikobeats/next.js that referenced this pull request Oct 24, 2022
Finds the root layout segments for flight requests. If those segments doesn't match the FlightRouterState it's a new root layout and a full page reload is required.

## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have a helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm lint`
- [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)


Co-authored-by: Tim Neutkens <6324199+timneutkens@users.noreply.github.com>
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 31, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants