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

Drop legacy React DOM Server in Edge runtime #40018

Merged
merged 18 commits into from Sep 29, 2022
Merged

Conversation

shuding
Copy link
Member

@shuding shuding commented Aug 27, 2022

When possible (ReactRoot enabled), we always use renderToReadableStream to render the element to string and drop all renderToString and renderToStaticMarkup usages. Since this is always true for the Edge Runtime (which requires React 18+), so we can safely eliminate the ./cjs/react-dom-server-legacy.browser.production.min.js module there (ref).

This reduces the gzipped bundle by 11kb (~9%). Let me know if there's any concern or it's too hacky.

image

Bug

  • Related issues linked using fixes #number
  • Integration tests added
  • Errors have 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 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 ijjk added created-by: Next.js team PRs by the Next.js team type: next labels Aug 27, 2022
@shuding shuding requested review from huozhi and ijjk August 27, 2022 23:20
@ijjk
Copy link
Member

ijjk commented Sep 9, 2022

Failing test suites

Commit: c6276b4

pnpm testheadless test/e2e/app-dir/rsc-basic.test.ts

  • app dir - react server components > should suspense next/image in server components
  • app dir - react server components > should handle external async module libraries correctly
  • app dir - react server components > should handle various kinds of exports correctly
  • app dir - react server components > should support native modules in server component
  • app dir - react server components > should resolve different kinds of components correctly
  • app dir - react server components > should render initial styles of css-in-js in SSR correctly
  • app dir - react server components > should support streaming for flight response
  • app dir - react server components > should support partial hydration with inlined server data
  • app dir - react server components > should resolve the subset react in server components based on the react-server condition
  • app dir - react server components > should resolve 3rd party package exports based on the react-server condition
  • app dir - react server components > should be able to opt-out 3rd party packages being bundled in server components
Expand output

● app dir - react server components › should suspense next/image in server components

expect(received).toContain(expected) // indexOf

Matcher error: received value must not be null nor undefined

Received has value: undefined

  244 |     const imageTag = getNodeBySelector(imageHTML, '#myimg')
  245 |
> 246 |     expect(imageTag.attr('src')).toContain('data:image')
      |                                  ^
  247 |   })
  248 |
  249 |   it('should handle external async module libraries correctly', async () => {

  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:246:34)
      at runMicrotasks (<anonymous>)

● app dir - react server components › should handle external async module libraries correctly

expect(received).toContain(expected) // indexOf

Expected substring: "module type:esm-export"
Received string:    "<!DOCTYPE html><html><head><style data-next-hide-fouc=\"true\">body{display:none}</style><noscript data-next-hide-fouc=\"true\"><style>body{display:block}</style></noscript><meta charSet=\"utf-8\"/><meta name=\"viewport\" content=\"width=device-width\"/><meta name=\"next-head-count\" content=\"2\"/><noscript data-n-css=\"\"></noscript><script defer=\"\" nomodule=\"\" src=\"/_next/static/chunks/polyfills.js?ts=1664382013798\"></script><script src=\"/_next/static/chunks/webpack.js?ts=1664382013798\" defer=\"\"></script><script src=\"/_next/static/chunks/main.js?ts=1664382013798\" defer=\"\"></script><script src=\"/_next/static/chunks/pages/_app.js?ts=1664382013798\" defer=\"\"></script><script src=\"/_next/static/chunks/pages/_error.js?ts=1664382013798\" defer=\"\"></script><script src=\"/_next/static/development/_buildManifest.js?ts=1664382013798\" defer=\"\"></script><script src=\"/_next/static/development/_ssgManifest.js?ts=1664382013798\" defer=\"\"></script><noscript id=\"__next_css__DO_NOT_USE__\"></noscript></head><body><div id=\"__next\"></div><script src=\"/_next/static/chunks/react-refresh.js?ts=1664382013798\"></script><script id=\"__NEXT_DATA__\" type=\"application/json\">{\"props\":{\"pageProps\":{\"statusCode\":500}},\"page\":\"/_error\",\"query\":{\"__NEXT_PAGE\":\"/external-imports\"},\"buildId\":\"development\",\"isFallback\":false,\"err\":{\"name\":\"Error\",\"source\":\"server\",\"message\":\"Cannot find module for page: /external-imports/page\",\"stack\":\"Error: Cannot find module for page: /external-imports/page\\n    at getPagePath (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:47:15)\\n    at Object.requirePage (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:52:22)\\n    at /tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:73\\n    at processTicksAndRejections (node:internal/process/task_queues:96:5)\\n    at async Object.loadComponents (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:26)\\n    at async Object.loadStaticPaths (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/dev/static-paths-worker.js:25:24)\"},\"gip\":true,\"scriptLoader\":[]}</script></body></html>"

  249 |   it('should handle external async module libraries correctly', async () => {
  250 |     const html = await renderViaHTTP(next.url, '/external-imports')
> 251 |     expect(html).toContain('module type:esm-export')
      |                  ^
  252 |     expect(html).toContain('export named:named')
  253 |     expect(html).toContain('export value:123')
  254 |     expect(html).toContain('export array:4,5,6')

  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:251:18)
      at runMicrotasks (<anonymous>)

● app dir - react server components › should handle various kinds of exports correctly

expect(received).toContain(expected) // indexOf

Expected substring: "abcde"
Received string:    "{\"props\":{\"pageProps\":{\"statusCode\":500}},\"page\":\"/_error\",\"query\":{\"__NEXT_PAGE\":\"/various-exports\"},\"buildId\":\"development\",\"isFallback\":false,\"err\":{\"name\":\"Error\",\"source\":\"server\",\"message\":\"Cannot find module for page: /various-exports/page\",\"stack\":\"Error: Cannot find module for page: /various-exports/page\\n    at getPagePath (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:47:15)\\n    at Object.requirePage (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:52:22)\\n    at /tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:73\\n    at processTicksAndRejections (node:internal/process/task_queues:96:5)\\n    at async Object.loadComponents (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:26)\\n    at async Object.loadStaticPaths (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/dev/static-paths-worker.js:25:24)\"},\"gip\":true,\"scriptLoader\":[]}"

  260 |     const content = getNodeBySelector(html, 'body').text()
  261 |
> 262 |     expect(content).toContain('abcde')
      |                     ^
  263 |     expect(content).toContain('default-export-arrow.client')
  264 |     expect(content).toContain('named.client')
  265 |

  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:262:21)
      at runMicrotasks (<anonymous>)

● app dir - react server components › should support native modules in server component

expect(received).toContain(expected) // indexOf

Expected substring: "fs: function"
Received string:    "{\"props\":{\"pageProps\":{\"statusCode\":500}},\"page\":\"/_error\",\"query\":{\"__NEXT_PAGE\":\"/native-module\"},\"buildId\":\"development\",\"isFallback\":false,\"err\":{\"name\":\"Error\",\"source\":\"server\",\"message\":\"Cannot find module for page: /native-module/page\",\"stack\":\"Error: Cannot find module for page: /native-module/page\\n    at getPagePath (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:47:15)\\n    at Object.requirePage (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:52:22)\\n    at /tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:73\\n    at processTicksAndRejections (node:internal/process/task_queues:96:5)\\n    at async Object.loadComponents (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:26)\\n    at async Object.loadStaticPaths (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/dev/static-paths-worker.js:25:24)\"},\"gip\":true,\"scriptLoader\":[]}"

  279 |     const content = getNodeBySelector(html, 'body').text()
  280 |
> 281 |     expect(content).toContain('fs: function')
      |                     ^
  282 |     expect(content).toContain('foo.client')
  283 |   })
  284 |

  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:281:21)
      at runMicrotasks (<anonymous>)

● app dir - react server components › should resolve different kinds of components correctly

TypeError: Cannot read properties of null (reading 'matchAll')

  289 |
  290 |     // Should have 5 occurrences of "client_component".
> 291 |     expect(Array.from(main.matchAll(/client_component/g)).length).toBe(5)
      |                            ^
  292 |
  293 |     // Should have 2 occurrences of "shared:server", and 2 occurrences of
  294 |     // "shared:client".

  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:291:28)
      at runMicrotasks (<anonymous>)

● app dir - react server components › should render initial styles of css-in-js in SSR correctly

expect(received).toMatch(expected)

Expected pattern: /{color:(\s*)purple;?}/
Received string:  "<style data-next-hide-fouc=\"true\">body{display:none}</style><noscript data-next-hide-fouc=\"true\"><style>body{display:block}</style></noscript><meta charset=\"utf-8\"><meta name=\"viewport\" content=\"width=device-width\"><meta name=\"next-head-count\" content=\"2\"><noscript data-n-css></noscript><script defer nomodule src=\"/_next/static/chunks/polyfills.js?ts=1664382014689\"></script><script src=\"/_next/static/chunks/webpack.js?ts=1664382014689\" defer></script><script src=\"/_next/static/chunks/main.js?ts=1664382014689\" defer></script><script src=\"/_next/static/chunks/pages/_app.js?ts=1664382014689\" defer></script><script src=\"/_next/static/chunks/pages/_error.js?ts=1664382014689\" defer></script><script src=\"/_next/static/development/_buildManifest.js?ts=1664382014689\" defer></script><script src=\"/_next/static/development/_ssgManifest.js?ts=1664382014689\" defer></script><noscript id=\"__next_css__DO_NOT_USE__\"></noscript>"

  310 |
  311 |     // from styled-jsx
> 312 |     expect(head).toMatch(/{color:(\s*)purple;?}/) // styled-jsx/style
      |                  ^
  313 |     expect(head).toMatch(/{color:(\s*)hotpink;?}/) // styled-jsx/css
  314 |
  315 |     // from styled-components

  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:312:18)
      at runMicrotasks (<anonymous>)

● app dir - react server components › should support streaming for flight response

expect(received).toContain(expected) // indexOf

Expected substring: "component:index.server"
Received string:    "J0:\"/_error?__NEXT_PAGE=%2F\"
"

  343 |     ).then(async (response) => {
  344 |       const result = await resolveStreamResponse(response)
> 345 |       expect(result).toContain('component:index.server')
      |                      ^
  346 |     })
  347 |   })
  348 |

  at e2e/app-dir/rsc-basic.test.ts:345:22
      at runMicrotasks (<anonymous>)
  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:334:5)

● app dir - react server components › should support partial hydration with inlined server data

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

Expected: true
Received: false

  366 |         })
  367 |
> 368 |         expect(gotFallback).toBe(true)
      |                             ^
  369 |         expect(gotData).toBe(true)
  370 |         expect(gotInlinedData).toBe(true)
  371 |       }

  at e2e/app-dir/rsc-basic.test.ts:368:29
      at runMicrotasks (<anonymous>)
  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:350:5)

● app dir - react server components › should resolve the subset react in server components based on the react-server condition

expect(received).toContain(expected) // indexOf

Expected substring: "Server: <!-- -->subset"
Received string:    "<!DOCTYPE html><html><head><style data-next-hide-fouc=\"true\">body{display:none}</style><noscript data-next-hide-fouc=\"true\"><style>body{display:block}</style></noscript><meta charSet=\"utf-8\"/><meta name=\"viewport\" content=\"width=device-width\"/><meta name=\"next-head-count\" content=\"2\"/><noscript data-n-css=\"\"></noscript><script defer=\"\" nomodule=\"\" src=\"/_next/static/chunks/polyfills.js?ts=1664382018958\"></script><script src=\"/_next/static/chunks/webpack.js?ts=1664382018958\" defer=\"\"></script><script src=\"/_next/static/chunks/main.js?ts=1664382018958\" defer=\"\"></script><script src=\"/_next/static/chunks/pages/_app.js?ts=1664382018958\" defer=\"\"></script><script src=\"/_next/static/chunks/pages/_error.js?ts=1664382018958\" defer=\"\"></script><script src=\"/_next/static/development/_buildManifest.js?ts=1664382018958\" defer=\"\"></script><script src=\"/_next/static/development/_ssgManifest.js?ts=1664382018958\" defer=\"\"></script><noscript id=\"__next_css__DO_NOT_USE__\"></noscript></head><body><div id=\"__next\"></div><script src=\"/_next/static/chunks/react-refresh.js?ts=1664382018958\"></script><script id=\"__NEXT_DATA__\" type=\"application/json\">{\"props\":{\"pageProps\":{\"statusCode\":500}},\"page\":\"/_error\",\"query\":{\"__NEXT_PAGE\":\"/react-server\"},\"buildId\":\"development\",\"isFallback\":false,\"err\":{\"name\":\"Error\",\"source\":\"server\",\"message\":\"Cannot find module for page: /react-server/page\",\"stack\":\"Error: Cannot find module for page: /react-server/page\\n    at getPagePath (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:47:15)\\n    at Object.requirePage (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:52:22)\\n    at /tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:73\\n    at processTicksAndRejections (node:internal/process/task_queues:96:5)\\n    at async Object.loadComponents (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:26)\\n    at async Object.loadStaticPaths (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/dev/static-paths-worker.js:25:24)\"},\"gip\":true,\"scriptLoader\":[]}</script></body></html>"

  395 |     await fetchViaHTTP(next.url, '/react-server').then(async (response) => {
  396 |       const result = await resolveStreamResponse(response)
> 397 |       expect(result).toContain('Server: <!-- -->subset')
      |                      ^
  398 |       expect(result).toContain('Client: <!-- -->full')
  399 |     })
  400 |   })

  at e2e/app-dir/rsc-basic.test.ts:397:22
      at runMicrotasks (<anonymous>)
  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:395:5)

● app dir - react server components › should resolve 3rd party package exports based on the react-server condition

expect(received).toContain(expected) // indexOf

Expected substring: "Server: index.react-server:react.subset:dep.server"
Received string:    "<!DOCTYPE html><html><head><style data-next-hide-fouc=\"true\">body{display:none}</style><noscript data-next-hide-fouc=\"true\"><style>body{display:block}</style></noscript><meta charSet=\"utf-8\"/><meta name=\"viewport\" content=\"width=device-width\"/><meta name=\"next-head-count\" content=\"2\"/><noscript data-n-css=\"\"></noscript><script defer=\"\" nomodule=\"\" src=\"/_next/static/chunks/polyfills.js?ts=1664382019198\"></script><script src=\"/_next/static/chunks/webpack.js?ts=1664382019198\" defer=\"\"></script><script src=\"/_next/static/chunks/main.js?ts=1664382019198\" defer=\"\"></script><script src=\"/_next/static/chunks/pages/_app.js?ts=1664382019198\" defer=\"\"></script><script src=\"/_next/static/chunks/pages/_error.js?ts=1664382019198\" defer=\"\"></script><script src=\"/_next/static/development/_buildManifest.js?ts=1664382019198\" defer=\"\"></script><script src=\"/_next/static/development/_ssgManifest.js?ts=1664382019198\" defer=\"\"></script><noscript id=\"__next_css__DO_NOT_USE__\"></noscript></head><body><div id=\"__next\"></div><script src=\"/_next/static/chunks/react-refresh.js?ts=1664382019198\"></script><script id=\"__NEXT_DATA__\" type=\"application/json\">{\"props\":{\"pageProps\":{\"statusCode\":500}},\"page\":\"/_error\",\"query\":{\"__NEXT_PAGE\":\"/react-server/3rd-party-package\"},\"buildId\":\"development\",\"isFallback\":false,\"err\":{\"name\":\"Error\",\"source\":\"server\",\"message\":\"Cannot find module for page: /react-server/3rd-party-package/page\",\"stack\":\"Error: Cannot find module for page: /react-server/3rd-party-package/page\\n    at getPagePath (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:47:15)\\n    at Object.requirePage (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:52:22)\\n    at /tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:73\\n    at processTicksAndRejections (node:internal/process/task_queues:96:5)\\n    at async Object.loadComponents (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:26)\\n    at async Object.loadStaticPaths (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/dev/static-paths-worker.js:25:24)\"},\"gip\":true,\"scriptLoader\":[]}</script></body></html>"

  407 |         // Package should be resolved based on the react-server condition,
  408 |         // as well as package's internal & external dependencies.
> 409 |         expect(result).toContain(
      |                        ^
  410 |           'Server: index.react-server:react.subset:dep.server'
  411 |         )
  412 |         expect(result).toContain('Client: index.default:react.full:dep.default')

  at e2e/app-dir/rsc-basic.test.ts:409:24
      at runMicrotasks (<anonymous>)
  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:403:5)

● app dir - react server components › should be able to opt-out 3rd party packages being bundled in server components

expect(received).toContain(expected) // indexOf

Expected substring: "Server: index.default"
Received string:    "<!DOCTYPE html><html><head><style data-next-hide-fouc=\"true\">body{display:none}</style><noscript data-next-hide-fouc=\"true\"><style>body{display:block}</style></noscript><meta charSet=\"utf-8\"/><meta name=\"viewport\" content=\"width=device-width\"/><meta name=\"next-head-count\" content=\"2\"/><noscript data-n-css=\"\"></noscript><script defer=\"\" nomodule=\"\" src=\"/_next/static/chunks/polyfills.js?ts=1664382019449\"></script><script src=\"/_next/static/chunks/webpack.js?ts=1664382019449\" defer=\"\"></script><script src=\"/_next/static/chunks/main.js?ts=1664382019449\" defer=\"\"></script><script src=\"/_next/static/chunks/pages/_app.js?ts=1664382019449\" defer=\"\"></script><script src=\"/_next/static/chunks/pages/_error.js?ts=1664382019449\" defer=\"\"></script><script src=\"/_next/static/development/_buildManifest.js?ts=1664382019449\" defer=\"\"></script><script src=\"/_next/static/development/_ssgManifest.js?ts=1664382019449\" defer=\"\"></script><noscript id=\"__next_css__DO_NOT_USE__\"></noscript></head><body><div id=\"__next\"></div><script src=\"/_next/static/chunks/react-refresh.js?ts=1664382019449\"></script><script id=\"__NEXT_DATA__\" type=\"application/json\">{\"props\":{\"pageProps\":{\"statusCode\":500}},\"page\":\"/_error\",\"query\":{\"__NEXT_PAGE\":\"/react-server/optout\"},\"buildId\":\"development\",\"isFallback\":false,\"err\":{\"name\":\"Error\",\"source\":\"server\",\"message\":\"Cannot find module for page: /react-server/optout/page\",\"stack\":\"Error: Cannot find module for page: /react-server/optout/page\\n    at getPagePath (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:47:15)\\n    at Object.requirePage (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/require.js:52:22)\\n    at /tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:73\\n    at processTicksAndRejections (node:internal/process/task_queues:96:5)\\n    at async Object.loadComponents (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/load-components.js:61:26)\\n    at async Object.loadStaticPaths (/tmp/next-install-f582d2a04dbce6e4785622bd0c529d3fe968974c6edbda2433fed9c54f315685/node_modules/next/dist/server/dev/static-paths-worker.js:25:24)\"},\"gip\":true,\"scriptLoader\":[]}</script></body></html>"

  423 |       async (response) => {
  424 |         const result = await resolveStreamResponse(response)
> 425 |         expect(result).toContain('Server: index.default')
      |                        ^
  426 |         expect(result).toContain('Server subpath: subpath.default')
  427 |         expect(result).toContain('Client: index.default')
  428 |         expect(result).toContain('Client subpath: subpath.default')

  at e2e/app-dir/rsc-basic.test.ts:425:24
      at runMicrotasks (<anonymous>)
  at Object.<anonymous> (e2e/app-dir/rsc-basic.test.ts:422:5)

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

@ijjk
Copy link
Member

ijjk commented Sep 9, 2022

Stats from current PR

Default Build (Increase detected ⚠️)
General Overall increase ⚠️
vercel/next.js canary shuding/next.js shu/1nsa Change
buildDuration 42.1s 41s -1.1s
buildDurationCached 15.3s 10.6s -4.7s
nodeModulesSize 91.9 MB 91.9 MB ⚠️ +7.48 kB
nextStartRea..uration (ms) 373ms 366ms -7ms
nextDevReadyDuration 409ms 396ms -13ms
Page Load Tests Overall decrease ⚠️
vercel/next.js canary shuding/next.js shu/1nsa Change
/ failed reqs 0 0
/ total time (seconds) 13.349 13.746 ⚠️ +0.4
/ avg req/sec 187.27 181.87 ⚠️ -5.4
/error-in-render failed reqs 0 0
/error-in-render total time (seconds) 8.829 8.793 -0.04
/error-in-render avg req/sec 283.17 284.33 +1.16
Client Bundles (main, webpack) Overall decrease ✓
vercel/next.js canary shuding/next.js shu/1nsa Change
181.HASH.js gzip 178 B 178 B
690-HASH.js gzip 12.2 kB 12.2 kB -4 B
app-internal..HASH.js gzip 408 B 407 B -1 B
framework-HASH.js gzip 48.7 kB 48.7 kB
main-app-HASH.js gzip 3.95 kB 3.95 kB
main-HASH.js gzip 31 kB 31 kB -7 B
webpack-HASH.js gzip 1.73 kB 1.73 kB ⚠️ +2 B
Overall change 98.1 kB 98.1 kB -10 B
Legacy Client Bundles (polyfills)
vercel/next.js canary shuding/next.js shu/1nsa Change
polyfills-HASH.js gzip 31 kB 31 kB
Overall change 31 kB 31 kB
Client Pages Overall decrease ✓
vercel/next.js canary shuding/next.js shu/1nsa Change
_app-HASH.js gzip 202 B 201 B -1 B
_error-HASH.js gzip 194 B 194 B
amp-HASH.js gzip 490 B 493 B ⚠️ +3 B
css-HASH.js gzip 328 B 329 B ⚠️ +1 B
dynamic-HASH.js gzip 2.03 kB 2.03 kB
edge-ssr-HASH.js gzip 273 B 272 B -1 B
head-HASH.js gzip 356 B 356 B
hooks-HASH.js gzip 800 B 803 B ⚠️ +3 B
image-HASH.js gzip 4.89 kB 4.89 kB -2 B
index-HASH.js gzip 263 B 262 B -1 B
link-HASH.js gzip 2.37 kB 2.37 kB ⚠️ +3 B
routerDirect..HASH.js gzip 322 B 320 B -2 B
script-HASH.js gzip 392 B 391 B -1 B
withRouter-HASH.js gzip 320 B 317 B -3 B
85e02e95b279..7e3.css gzip 107 B 107 B
Overall change 13.3 kB 13.3 kB -1 B
Client Build Manifests
vercel/next.js canary shuding/next.js shu/1nsa Change
_buildManifest.js gzip 483 B 483 B
Overall change 483 B 483 B
Rendered Page Sizes Overall increase ⚠️
vercel/next.js canary shuding/next.js shu/1nsa Change
index.html gzip 512 B 513 B ⚠️ +1 B
link.html gzip 527 B 527 B
withRouter.html gzip 507 B 507 B
Overall change 1.55 kB 1.55 kB ⚠️ +1 B
Edge SSR bundle Size Overall decrease ✓
vercel/next.js canary shuding/next.js shu/1nsa Change
edge-ssr.js gzip 73 kB 61.1 kB -11.9 kB
page.js gzip 82.7 kB 70.8 kB -11.9 kB
Overall change 156 kB 132 kB -23.8 kB
Middleware size Overall increase ⚠️
vercel/next.js canary shuding/next.js shu/1nsa Change
middleware-b..fest.js gzip 605 B 608 B ⚠️ +3 B
middleware-r..fest.js gzip 144 B 145 B ⚠️ +1 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 ⚠️ +6 B

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-fb7a6ff38f5b43e7.js",
+    "static/chunks/webpack-4aa5df649b1ad8f8.js",
     "static/chunks/framework-86da37f78600f443.js",
-    "static/chunks/690-bc0b6cc7d3627807.js",
-    "static/chunks/main-app-e38a5658b35005ac.js"
+    "static/chunks/663-dce8a1ce95850a2e.js",
+    "static/chunks/main-app-bec7913c0985ef60.js"
   ],
   pages: {
     "/": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/index-b489cfccc7fe8a82.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/index-1c6d5cb3389c0fda.js"
     ],
     "/_app": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/_app-3aa8e0480fcf6efe.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/_app-8369e5d96efb8dc0.js"
     ],
     "/_error": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/_error-14aac49c05fd9095.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/_error-ec49c850a990fc29.js"
     ],
     "/amp": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/amp-7cee847fbebabada.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/amp-8889ed34ec7282bc.js"
     ],
     "/css": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
+      "static/chunks/main-fdfb972dd3e12c32.js",
       "static/css/94fdbc56eafa2039.css",
-      "static/chunks/pages/css-d88af72903aa3dc3.js"
+      "static/chunks/pages/css-b2d7b796b491182b.js"
     ],
     "/dynamic": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/dynamic-6ec7715e5b0823e8.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/dynamic-4daf6d394edf1efd.js"
     ],
     "/edge-ssr": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/edge-ssr-45b419bc554933db.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/edge-ssr-b11585671f603bcc.js"
     ],
     "/head": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/head-0d2dacae65905e96.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/head-e710037e9c5eb813.js"
     ],
     "/hooks": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/hooks-9e034aee1233fbb2.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/hooks-e6727bd4bdb477bc.js"
     ],
     "/image": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/image-ba6c016a675a4afe.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/image-0648ad587f836caf.js"
     ],
     "/link": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/link-56f9a8c000174955.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/link-2be346b97069919e.js"
     ],
     "/routerDirect": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/routerDirect-beccee3444f5a477.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/routerDirect-9c6c7141473d12cd.js"
     ],
     "/script": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/script-fd8bb4f62e64d07e.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/script-0a7505e409469374.js"
     ],
     "/withRouter": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/withRouter-5a3be48ff2139956.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/withRouter-ec8221aa829dfbbf.js"
     ]
   },
   ampFirstPages: []
Diff for middleware-r..-manifest.js
@@ -1,6 +1,6 @@
 self.__REACT_LOADABLE_MANIFEST = {
   "dynamic.js -> ../components/hello": {
-    id: 7888,
-    files: ["static/chunks/181.6508744652c65fe5.js"]
+    id: 9931,
+    files: ["static/chunks/931.91e338cfadce09c6.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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/adapter.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/server.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/get-hostname.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-locale.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-locale.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/parse-path.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/relativize-url.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/compiled/cookie/index.js": /***/ module => {
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/compiled/ua-parser-js/ua-parser.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/internal-utils.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/adapter.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js"
       );
       var _utils = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js"
       );
       var _fetchEvent = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/fetch-event.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/request.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/response.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/relativize-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/next-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/internal-utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/next-url.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/get-hostname.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/cookies.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/compiled/cookie/index.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/fetch-event.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/request.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/next-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js"
       );
       var _error = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js"
       );
       var _cookies = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/cookies.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/response.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/next-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js"
       );
       var _cookies = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/cookies.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/user-agent.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/compiled/ua-parser-js/ua-parser.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/server.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/request.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/response.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/user-agent.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/user-agent.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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-b489cfccc7fe8a82.js"],
-  "/_error": ["static\u002Fchunks\u002Fpages\u002F_error-14aac49c05fd9095.js"],
-  "/amp": ["static\u002Fchunks\u002Fpages\u002Famp-7cee847fbebabada.js"],
+  "/": ["static\u002Fchunks\u002Fpages\u002Findex-1c6d5cb3389c0fda.js"],
+  "/_error": ["static\u002Fchunks\u002Fpages\u002F_error-ec49c850a990fc29.js"],
+  "/amp": ["static\u002Fchunks\u002Fpages\u002Famp-8889ed34ec7282bc.js"],
   "/css": [
     "static\u002Fcss\u002F94fdbc56eafa2039.css",
-    "static\u002Fchunks\u002Fpages\u002Fcss-d88af72903aa3dc3.js"
+    "static\u002Fchunks\u002Fpages\u002Fcss-b2d7b796b491182b.js"
   ],
   "/dynamic": [
-    "static\u002Fchunks\u002Fpages\u002Fdynamic-6ec7715e5b0823e8.js"
+    "static\u002Fchunks\u002Fpages\u002Fdynamic-4daf6d394edf1efd.js"
   ],
   "/edge-ssr": [
-    "static\u002Fchunks\u002Fpages\u002Fedge-ssr-45b419bc554933db.js"
+    "static\u002Fchunks\u002Fpages\u002Fedge-ssr-b11585671f603bcc.js"
   ],
-  "/head": ["static\u002Fchunks\u002Fpages\u002Fhead-0d2dacae65905e96.js"],
-  "/hooks": ["static\u002Fchunks\u002Fpages\u002Fhooks-9e034aee1233fbb2.js"],
-  "/image": ["static\u002Fchunks\u002Fpages\u002Fimage-ba6c016a675a4afe.js"],
-  "/link": ["static\u002Fchunks\u002Fpages\u002Flink-56f9a8c000174955.js"],
+  "/head": ["static\u002Fchunks\u002Fpages\u002Fhead-e710037e9c5eb813.js"],
+  "/hooks": ["static\u002Fchunks\u002Fpages\u002Fhooks-e6727bd4bdb477bc.js"],
+  "/image": ["static\u002Fchunks\u002Fpages\u002Fimage-0648ad587f836caf.js"],
+  "/link": ["static\u002Fchunks\u002Fpages\u002Flink-2be346b97069919e.js"],
   "/routerDirect": [
-    "static\u002Fchunks\u002Fpages\u002FrouterDirect-beccee3444f5a477.js"
+    "static\u002Fchunks\u002Fpages\u002FrouterDirect-9c6c7141473d12cd.js"
   ],
-  "/script": ["static\u002Fchunks\u002Fpages\u002Fscript-fd8bb4f62e64d07e.js"],
+  "/script": ["static\u002Fchunks\u002Fpages\u002Fscript-0a7505e409469374.js"],
   "/withRouter": [
-    "static\u002Fchunks\u002Fpages\u002FwithRouter-5a3be48ff2139956.js"
+    "static\u002Fchunks\u002Fpages\u002FwithRouter-ec8221aa829dfbbf.js"
   ],
   sortedPages: [
     "\u002F",
Diff for _app-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [888],
   {
-    /***/ 5493: /***/ function(
+    /***/ 5745: /***/ 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__(8225);
+          return __webpack_require__(4368);
         }
       ]);
       if (false) {
@@ -24,7 +24,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 179], function() {
-      return __webpack_exec__(5493), __webpack_exec__(6400);
+      return __webpack_exec__(5745), __webpack_exec__(393);
     });
     /******/ 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],
   {
-    /***/ 4719: /***/ function(
+    /***/ 8545: /***/ 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__(1506);
+          return __webpack_require__(5648);
         }
       ]);
       if (false) {
@@ -24,7 +24,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [888, 774, 179], function() {
-      return __webpack_exec__(4719);
+      return __webpack_exec__(8545);
     });
     /******/ 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],
   {
-    /***/ 9745: /***/ function(
+    /***/ 9850: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = false ? 0 : __webpack_require__(4337);
+      module.exports = false ? 0 : __webpack_require__(1122);
 
       /***/
     },
 
-    /***/ 708: /***/ function(
+    /***/ 9134: /***/ 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__(8622);
+          return __webpack_require__(2684);
         }
       ]);
       if (false) {
@@ -28,7 +28,7 @@
       /***/
     },
 
-    /***/ 4337: /***/ function(module, exports, __webpack_require__) {
+    /***/ 1122: /***/ 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__(1883));
-      var _ampContext = __webpack_require__(1886);
-      var _ampMode = __webpack_require__(8737);
+      var _ampContext = __webpack_require__(509);
+      var _ampMode = __webpack_require__(2654);
       function useAmp() {
         // Don't assign the context value to a variable to save bytes
         return (0, _ampMode).isInAmpMode(
@@ -61,7 +61,7 @@
       /***/
     },
 
-    /***/ 8622: /***/ function(
+    /***/ 2684: /***/ 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__(
-        9745
+        9850
       );
       /* 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__(708);
+      return __webpack_exec__(9134);
     });
     /******/ 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],
   {
-    /***/ 3057: /***/ function(
+    /***/ 6048: /***/ 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__(642);
+          return __webpack_require__(8265);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 642: /***/ function(
+    /***/ 8265: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -29,7 +29,7 @@
         1914
       );
       /* harmony import */ var _css_module_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        8284
+        5055
       );
       /* 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 @@
       /***/
     },
 
-    /***/ 8284: /***/ function(module) {
+    /***/ 5055: /***/ 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__(3057);
+      return __webpack_exec__(6048);
     });
     /******/ 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],
   {
-    /***/ 3969: /***/ function(
+    /***/ 9201: /***/ 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__(2957);
+          return __webpack_require__(8646);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 762: /***/ function(module, exports, __webpack_require__) {
+    /***/ 4793: /***/ 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__(1883));
-      var _loadable = _interop_require_default(__webpack_require__(9583));
+      var _loadable = _interop_require_default(__webpack_require__(902));
       function dynamic(dynamicOptions, options) {
         var loadableFn = _loadable.default;
         var loadableOptions = (options == null
@@ -138,7 +138,7 @@
       /***/
     },
 
-    /***/ 651: /***/ function(
+    /***/ 2303: /***/ function(
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -160,7 +160,7 @@
       /***/
     },
 
-    /***/ 9583: /***/ function(
+    /***/ 902: /***/ 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__(1883));
-      var _loadableContext = __webpack_require__(651);
+      var _loadableContext = __webpack_require__(2303);
       var useSyncExternalStore = (true ? __webpack_require__(1883) : 0)
         .useSyncExternalStore;
       var ALL_INITIALIZERS = [];
@@ -494,7 +494,7 @@
       /***/
     },
 
-    /***/ 2957: /***/ function(
+    /***/ 8646: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -511,7 +511,7 @@
         1914
       );
       /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        9787
+        2988
       );
       /* 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() */ 181)
-            .then(__webpack_require__.bind(__webpack_require__, 7888));
+            .e(/* import() */ 931)
+            .then(__webpack_require__.bind(__webpack_require__, 9931));
         },
         {
           loadableGenerated: {
             webpack: function() {
-              return [/*require.resolve*/ 7888];
+              return [/*require.resolve*/ 9931];
             }
           }
         }
@@ -556,12 +556,12 @@
       /***/
     },
 
-    /***/ 9787: /***/ function(
+    /***/ 2988: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = false ? 0 : __webpack_require__(762);
+      module.exports = false ? 0 : __webpack_require__(4793);
 
       /***/
     }
@@ -572,7 +572,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(3969);
+      return __webpack_exec__(9201);
     });
     /******/ 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],
   {
-    /***/ 7033: /***/ function(
+    /***/ 5572: /***/ 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__(5406);
+          return __webpack_require__(1778);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 5406: /***/ function(
+    /***/ 1778: /***/ 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__(7033);
+      return __webpack_exec__(5572);
     });
     /******/ 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],
   {
-    /***/ 7471: /***/ function(
+    /***/ 9657: /***/ 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__(3375);
+          return __webpack_require__(8780);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 3375: /***/ function(
+    /***/ 8780: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -35,7 +35,7 @@
         1914
       );
       /* harmony import */ var next_head__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        9401
+        9689
       );
       /* harmony import */ var next_head__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(
         next_head__WEBPACK_IMPORTED_MODULE_1__
@@ -71,12 +71,12 @@
       /***/
     },
 
-    /***/ 9401: /***/ function(
+    /***/ 9689: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = false ? 0 : __webpack_require__(7846);
+      module.exports = false ? 0 : __webpack_require__(7452);
 
       /***/
     }
@@ -87,7 +87,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(7471);
+      return __webpack_exec__(9657);
     });
     /******/ 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],
   {
-    /***/ 3497: /***/ function(
+    /***/ 4434: /***/ 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__(4575);
+          return __webpack_require__(1320);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 4575: /***/ function(
+    /***/ 1320: /***/ 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__(3497);
+      return __webpack_exec__(4434);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for image-HASH.js
@@ -26,7 +26,7 @@
       /***/
     },
 
-    /***/ 8548: /***/ function(
+    /***/ 3465: /***/ 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__(6172);
+          return __webpack_require__(3083);
         }
       ]);
       if (false) {
@@ -43,7 +43,7 @@
       /***/
     },
 
-    /***/ 7797: /***/ function(module, exports, __webpack_require__) {
+    /***/ 8200: /***/ 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__(1883));
-      var _head = _interop_require_default(__webpack_require__(7846));
-      var _imageConfig = __webpack_require__(9889);
-      var _useIntersection = __webpack_require__(1622);
-      var _imageConfigContext = __webpack_require__(4983);
-      var _utils = __webpack_require__(2754);
-      var _normalizeTrailingSlash = __webpack_require__(3494);
+      var _head = _interop_require_default(__webpack_require__(7452));
+      var _imageConfig = __webpack_require__(9753);
+      var _useIntersection = __webpack_require__(4915);
+      var _imageConfigContext = __webpack_require__(5537);
+      var _utils = __webpack_require__(3215);
+      var _normalizeTrailingSlash = __webpack_require__(423);
       function Image(_param) {
         var src = _param.src,
           sizes = _param.sizes,
@@ -929,7 +929,7 @@
       /***/
     },
 
-    /***/ 1622: /***/ function(module, exports, __webpack_require__) {
+    /***/ 4915: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -941,7 +941,7 @@
       });
       exports.useIntersection = useIntersection;
       var _react = __webpack_require__(1883);
-      var _requestIdleCallback = __webpack_require__(470);
+      var _requestIdleCallback = __webpack_require__(6256);
       var hasIntersectionObserver = typeof IntersectionObserver === "function";
       var observers = new Map();
       var idList = [];
@@ -1066,7 +1066,7 @@
       /***/
     },
 
-    /***/ 6172: /***/ function(
+    /***/ 3083: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -1087,8 +1087,8 @@
 
       // EXTERNAL MODULE: ./node_modules/.pnpm/react@0.0.0-experimental-3de926449-20220927/node_modules/react/jsx-runtime.js
       var jsx_runtime = __webpack_require__(1914);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/image.js
-      var next_image = __webpack_require__(7612);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/image.js
+      var next_image = __webpack_require__(7498);
       var image_default = /*#__PURE__*/ __webpack_require__.n(next_image); // CONCATENATED MODULE: ./pages/nextjs.png
       /* harmony default export */ var nextjs = {
         src: "/_next/static/media/nextjs.cae0b805.png",
@@ -1118,12 +1118,12 @@
       /***/
     },
 
-    /***/ 7612: /***/ function(
+    /***/ 7498: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = false ? 0 : __webpack_require__(7797);
+      module.exports = false ? 0 : __webpack_require__(8200);
 
       /***/
     }
@@ -1134,7 +1134,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(8548);
+      return __webpack_exec__(3465);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for index-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [405],
   {
-    /***/ 5259: /***/ function(
+    /***/ 3984: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/",
         function() {
-          return __webpack_require__(1898);
+          return __webpack_require__(937);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 1898: /***/ function(
+    /***/ 937: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -46,7 +46,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [888, 774, 179], function() {
-      return __webpack_exec__(5259);
+      return __webpack_exec__(3984);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for link-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [644],
   {
-    /***/ 8612: /***/ function(
+    /***/ 3120: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/link",
         function() {
-          return __webpack_require__(2143);
+          return __webpack_require__(3089);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 2608: /***/ function(module, exports) {
+    /***/ 8856: /***/ function(module, exports) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -54,7 +54,7 @@
       /***/
     },
 
-    /***/ 2966: /***/ function(module, exports, __webpack_require__) {
+    /***/ 1893: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -72,13 +72,13 @@
         5997
       ) /* ["default"] */.Z;
       var _react = _interop_require_default(__webpack_require__(1883));
-      var _router = __webpack_require__(2962);
-      var _addLocale = __webpack_require__(8280);
-      var _routerContext = __webpack_require__(2670);
-      var _appRouterContext = __webpack_require__(9260);
-      var _useIntersection = __webpack_require__(1622);
-      var _getDomainLocale = __webpack_require__(2608);
-      var _addBasePath = __webpack_require__(3309);
+      var _router = __webpack_require__(4289);
+      var _addLocale = __webpack_require__(9793);
+      var _routerContext = __webpack_require__(7609);
+      var _appRouterContext = __webpack_require__(8767);
+      var _useIntersection = __webpack_require__(4915);
+      var _getDomainLocale = __webpack_require__(8856);
+      var _addBasePath = __webpack_require__(3869);
       ("client");
       var prefetched = {};
       function prefetch(router, href, as, options) {
@@ -429,7 +429,7 @@
       /***/
     },
 
-    /***/ 1622: /***/ function(module, exports, __webpack_require__) {
+    /***/ 4915: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -441,7 +441,7 @@
       });
       exports.useIntersection = useIntersection;
       var _react = __webpack_require__(1883);
-      var _requestIdleCallback = __webpack_require__(470);
+      var _requestIdleCallback = __webpack_require__(6256);
       var hasIntersectionObserver = typeof IntersectionObserver === "function";
       var observers = new Map();
       var idList = [];
@@ -566,7 +566,7 @@
       /***/
     },
 
-    /***/ 9260: /***/ function(
+    /***/ 8767: /***/ function(
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -594,7 +594,7 @@
       /***/
     },
 
-    /***/ 2143: /***/ function(
+    /***/ 3089: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -611,7 +611,7 @@
         1914
       );
       /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        9838
+        365
       );
       /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(
         next_link__WEBPACK_IMPORTED_MODULE_1__
@@ -642,12 +642,12 @@
       /***/
     },
 
-    /***/ 9838: /***/ function(
+    /***/ 365: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = false ? 0 : __webpack_require__(2966);
+      module.exports = false ? 0 : __webpack_require__(1893);
 
       /***/
     }
@@ -658,7 +658,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(8612);
+      return __webpack_exec__(3120);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for routerDirect-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [58],
   {
-    /***/ 5592: /***/ function(
+    /***/ 7356: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/routerDirect",
         function() {
-          return __webpack_require__(9518);
+          return __webpack_require__(4117);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 9518: /***/ function(
+    /***/ 4117: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -35,7 +35,7 @@
         1914
       );
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        7193
+        1962
       );
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(
         next_router__WEBPACK_IMPORTED_MODULE_1__
@@ -56,12 +56,12 @@
       /***/
     },
 
-    /***/ 7193: /***/ function(
+    /***/ 1962: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = false ? 0 : __webpack_require__(6400);
+      module.exports = false ? 0 : __webpack_require__(393);
 
       /***/
     }
@@ -72,7 +72,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(5592);
+      return __webpack_exec__(7356);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for script-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [797],
   {
-    /***/ 2946: /***/ function(
+    /***/ 5244: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/script",
         function() {
-          return __webpack_require__(7315);
+          return __webpack_require__(5347);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 7315: /***/ function(
+    /***/ 5347: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -35,7 +35,7 @@
         1914
       );
       /* harmony import */ var next_script__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        8664
+        8650
       );
       /* harmony import */ var next_script__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(
         next_script__WEBPACK_IMPORTED_MODULE_1__
@@ -70,12 +70,12 @@
       /***/
     },
 
-    /***/ 8664: /***/ function(
+    /***/ 8650: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = false ? 0 : __webpack_require__(2333);
+      module.exports = false ? 0 : __webpack_require__(8335);
 
       /***/
     }
@@ -86,7 +86,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(2946);
+      return __webpack_exec__(5244);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for withRouter-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [807],
   {
-    /***/ 6349: /***/ function(
+    /***/ 7976: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/withRouter",
         function() {
-          return __webpack_require__(2424);
+          return __webpack_require__(284);
         }
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 2424: /***/ function(
+    /***/ 284: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -35,7 +35,7 @@
         1914
       );
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
-        7193
+        1962
       );
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(
         next_router__WEBPACK_IMPORTED_MODULE_1__
@@ -54,12 +54,12 @@
       /***/
     },
 
-    /***/ 7193: /***/ function(
+    /***/ 1962: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
-      module.exports = false ? 0 : __webpack_require__(6400);
+      module.exports = false ? 0 : __webpack_require__(393);
 
       /***/
     }
@@ -70,7 +70,7 @@
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
     /******/ __webpack_require__.O(0, [774, 888, 179], function() {
-      return __webpack_exec__(6349);
+      return __webpack_exec__(7976);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for 181.HASH.js
@@ -1,8 +1,8 @@
 "use strict";
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
-  [181],
+  [931],
   {
-    /***/ 7888: /***/ function(
+    /***/ 9931: /***/ function(
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
Diff for 690-HASH.js
@@ -1,6 +1,6 @@
 "use strict";
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
-  [690],
+  [663],
   {
     /***/ 8286: /***/ function(__unused_webpack_module, exports) {
       Object.defineProperty(exports, "__esModule", {
@@ -711,7 +711,7 @@
       /***/
     },
 
-    /***/ 1450: /***/ function(module, exports, __webpack_require__) {
+    /***/ 7823: /***/ function(module, exports, __webpack_require__) {
       Object.defineProperty(exports, "__esModule", {
         value: true
       });
@@ -727,11 +727,11 @@
         8889
       ) /* ["default"] */.Z;
       var _react = _interop_require_wildcard(__webpack_require__(1883));
-      var _reactServerDomWebpack = __webpack_require__(6036);
-      var _appRouterContext = __webpack_require__(9260);
-      var _reducer = __webpack_require__(831);
-      var _hooksClientContext = __webpack_require__(1551);
-      var _useReducerWithDevtools = __webpack_require__(246);
+      var _reactServerDomWebpack = __webpack_require__(1630);
+      var _appRouterContext = __webpack_require__(8767);
+      var _reducer = __webpack_require__(9239);
+      var _hooksClientContext = __webpack_require__(6882);
+      var _useReducerWithDevtools = __webpack_require__(9025);
       function AppRouter(param) {
         var initialTree = param.initialTree,
           initialCanonicalUrl = param.initialCanonicalUrl,
@@ -1145,7 +1145,7 @@
       /***/
     },
 
-    /***/ 1551: /***/ function(module, exports, __webpack_require__) {
+    /***/ 6882: /***/ function(module, exports, __webpack_require__) {
       Object.defineProperty(exports, "__esModule", {
         value: true
       });
@@ -1176,7 +1176,7 @@
       /***/
     },
 
-    /***/ 4365: /***/ function(module, exports) {
+    /***/ 6734: /***/ function(module, exports) {
       Object.defineProperty(exports, "__esModule", {
         value: true
       });
@@ -1212,7 +1212,7 @@
       /***/
     },
 
-    /***/ 6690: /***/ function(module, exports, __webpack_require__) {
+    /***/ 3663: /***/ function(module, exports, __webpack_require__) {
       Object.defineProperty(exports, "__esModule", {
         value: true
       });
@@ -1233,9 +1233,9 @@
         8889
       ) /* ["default"] */.Z;
       var _react = _interop_require_wildcard(__webpack_require__(1883));
-      var _appRouterContext = __webpack_require__(9260);
-      var _appRouterClient = __webpack_require__(1450);
-      var _infinitePromise = __webpack_require__(4365);
+      var _appRouterContext = __webpack_require__(8767);
+      var _appRouterClient = __webpack_require__(7823);
+      var _infinitePromise = __webpack_require__(6734);
       function OuterLayoutRouter(param) {
         var parallelRouterKey = param.parallelRouterKey,
           segmentPath = param.segmentPath,
@@ -1809,7 +1809,7 @@
       /***/
     },
 
-    /***/ 8545: /***/ function(module, exports) {
+    /***/ 5585: /***/ function(module, exports) {
       Object.defineProperty(exports, "__esModule", {
         value: true
       });
@@ -1847,7 +1847,7 @@
       /***/
     },
 
-    /***/ 831: /***/ function(module, exports, __webpack_require__) {
+    /***/ 9239: /***/ function(module, exports, __webpack_require__) {
       Object.defineProperty(exports, "__esModule", {
         value: true
       });
@@ -1859,8 +1859,8 @@
       });
       exports.reducer = exports.ACTION_PREFETCH = exports.ACTION_SERVER_PATCH = exports.ACTION_RESTORE = exports.ACTION_NAVIGATE = exports.ACTION_RELOAD = void 0;
       var _extends = __webpack_require__(5506) /* ["default"] */.Z;
-      var _matchSegments = __webpack_require__(8545);
-      var _appRouterClient = __webpack_require__(1450); // TODO-APP: change `any` to type inference.
+      var _matchSegments = __webpack_require__(5585);
+      var _appRouterClient = __webpack_require__(7823); // TODO-APP: change `any` to type inference.
       /**
        * Create data fetching record for Promise.
        */ function createRecordFromThenable(thenable) {
@@ -2814,7 +2814,7 @@
       /***/
     },
 
-    /***/ 246: /***/ function(module, exports, __webpack_require__) {
+    /***/ 9025: /***/ function(module, exports, __webpack_require__) {
       Object.defineProperty(exports, "__esModule", {
         value: true
       });
@@ -2979,7 +2979,7 @@
       /***/
     },
 
-    /***/ 9260: /***/ function(
+    /***/ 8767: /***/ function(
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -3005,7 +3005,7 @@
       /***/
     },
 
-    /***/ 899: /***/ function(
+    /***/ 9663: /***/ function(
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -3444,13 +3444,13 @@
       /***/
     },
 
-    /***/ 6036: /***/ function(
+    /***/ 1630: /***/ function(
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
       if (true) {
-        module.exports = __webpack_require__(899);
+        module.exports = __webpack_require__(9663);
       } else {
       }
Diff for app-internals-HASH.js
@@ -1,25 +1,25 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [532],
   {
-    /***/ 3750: /***/ function(
+    /***/ 7484: /***/ function(
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) {
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 1450, 23)
+        __webpack_require__.t.bind(__webpack_require__, 7823, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 6690, 23)
+        __webpack_require__.t.bind(__webpack_require__, 3663, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 5027, 23)
+        __webpack_require__.t.bind(__webpack_require__, 5773, 23)
       );
 
       /***/
     },
 
-    /***/ 5027: /***/ function(module, exports, __webpack_require__) {
+    /***/ 5773: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -30,7 +30,7 @@
         8889
       ) /* ["default"] */.Z;
       var _react = _interop_require_wildcard(__webpack_require__(1883));
-      var _appRouterContext = __webpack_require__(9260);
+      var _appRouterContext = __webpack_require__(8767);
       function RenderFromTemplateContext() {
         var children = (0, _react).useContext(
           _appRouterContext.TemplateContext
@@ -62,8 +62,8 @@
     /******/ var __webpack_exec__ = function(moduleId) {
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
-    /******/ __webpack_require__.O(0, [774, 690], function() {
-      return __webpack_exec__(3750);
+    /******/ __webpack_require__.O(0, [774, 663], function() {
+      return __webpack_exec__(7484);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for page-5da96debe4a63a7f.js
@@ -1,6 +1,6 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([[760],{
 
-/***/ 5554:
+/***/ 3473:
 /***/ (function() {
 
 
@@ -10,7 +10,7 @@
 },
 /******/ function(__webpack_require__) { // webpackRuntimeModules
 /******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
-/******/ var __webpack_exports__ = (__webpack_exec__(5554));
+/******/ var __webpack_exports__ = (__webpack_exec__(3473));
 /******/ _N_E = __webpack_exports__;
 /******/ }
 ]);
\ No newline at end of file
Diff for main-HASH.js

Diff too large to display

Diff for main-app-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [744],
   {
-    /***/ 5141: /***/ function() {
+    /***/ 2740: /***/ function() {
       "trimStart" in String.prototype ||
         (String.prototype.trimStart = String.prototype.trimLeft),
         "trimEnd" in String.prototype ||
@@ -51,7 +51,7 @@
       /***/
     },
 
-    /***/ 5691: /***/ function(module, exports, __webpack_require__) {
+    /***/ 9092: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -68,12 +68,12 @@
       var _interop_require_wildcard = __webpack_require__(
         8889
       ) /* ["default"] */.Z;
-      __webpack_require__(5141);
+      __webpack_require__(2740);
       var _client = _interop_require_default(__webpack_require__(9403));
       var _react = _interop_require_wildcard(__webpack_require__(1883));
-      var _reactServerDomWebpack = __webpack_require__(6036);
+      var _reactServerDomWebpack = __webpack_require__(1630);
       var _performanceRelayer = _interop_require_default(
-        __webpack_require__(1142)
+        __webpack_require__(3232)
       );
       // eslint-disable-next-line no-undef
       var getChunkScriptFilename = __webpack_require__.u;
@@ -246,12 +246,12 @@
       /***/
     },
 
-    /***/ 5419: /***/ function(module, exports, __webpack_require__) {
+    /***/ 2316: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
-      var _appIndex = __webpack_require__(5691);
-      __webpack_require__(1450);
-      __webpack_require__(6690);
+      var _appIndex = __webpack_require__(9092);
+      __webpack_require__(7823);
+      __webpack_require__(3663);
       window.next = {
         version: _appIndex.version,
         appDir: true
@@ -272,14 +272,14 @@
       /***/
     },
 
-    /***/ 1142: /***/ function(module, exports, __webpack_require__) {
+    /***/ 3232: /***/ function(module, exports, __webpack_require__) {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
         value: true
       });
       exports["default"] = void 0;
-      var _webVitals = __webpack_require__(8296);
+      var _webVitals = __webpack_require__(2002);
       var initialHref = location.href;
       var isRegistered = false;
       var userReportHandler;
@@ -327,7 +327,7 @@
       /***/
     },
 
-    /***/ 8296: /***/ function(module) {
+    /***/ 2002: /***/ function(module) {
       var __dirname = "/";
       (function() {
         "use strict";
@@ -872,8 +872,8 @@
     /******/ var __webpack_exec__ = function(moduleId) {
       return __webpack_require__((__webpack_require__.s = moduleId));
     };
-    /******/ __webpack_require__.O(0, [774, 690], function() {
-      return __webpack_exec__(5419);
+    /******/ __webpack_require__.O(0, [774, 663], function() {
+      return __webpack_exec__(2316);
     });
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for webpack-HASH.js
@@ -212,7 +212,7 @@
     /******/ __webpack_require__.u = function(chunkId) {
       /******/ // return url for filenames based on template
       /******/ return (
-        "static/chunks/" + chunkId + "." + "6508744652c65fe5" + ".js"
+        "static/chunks/" + chunkId + "." + "91e338cfadce09c6" + ".js"
       );
       /******/
     };
Diff for index.html
@@ -11,7 +11,7 @@
       src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"
     ></script>
     <script
-      src="/_next/static/chunks/webpack-fb7a6ff38f5b43e7.js"
+      src="/_next/static/chunks/webpack-4aa5df649b1ad8f8.js"
       defer=""
     ></script>
     <script
@@ -19,15 +19,15 @@
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/main-333bbdca328120e1.js"
+      src="/_next/static/chunks/main-fdfb972dd3e12c32.js"
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/pages/_app-3aa8e0480fcf6efe.js"
+      src="/_next/static/chunks/pages/_app-8369e5d96efb8dc0.js"
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/pages/index-b489cfccc7fe8a82.js"
+      src="/_next/static/chunks/pages/index-1c6d5cb3389c0fda.js"
       defer=""
     ></script>
     <script src="/_next/static/BUILD_ID/_buildManifest.js" defer=""></script>
Diff for link.html
@@ -11,7 +11,7 @@
       src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"
     ></script>
     <script
-      src="/_next/static/chunks/webpack-fb7a6ff38f5b43e7.js"
+      src="/_next/static/chunks/webpack-4aa5df649b1ad8f8.js"
       defer=""
     ></script>
     <script
@@ -19,15 +19,15 @@
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/main-333bbdca328120e1.js"
+      src="/_next/static/chunks/main-fdfb972dd3e12c32.js"
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/pages/_app-3aa8e0480fcf6efe.js"
+      src="/_next/static/chunks/pages/_app-8369e5d96efb8dc0.js"
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/pages/link-56f9a8c000174955.js"
+      src="/_next/static/chunks/pages/link-2be346b97069919e.js"
       defer=""
     ></script>
     <script src="/_next/static/BUILD_ID/_buildManifest.js" defer=""></script>
Diff for withRouter.html
@@ -11,7 +11,7 @@
       src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"
     ></script>
     <script
-      src="/_next/static/chunks/webpack-fb7a6ff38f5b43e7.js"
+      src="/_next/static/chunks/webpack-4aa5df649b1ad8f8.js"
       defer=""
     ></script>
     <script
@@ -19,15 +19,15 @@
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/main-333bbdca328120e1.js"
+      src="/_next/static/chunks/main-fdfb972dd3e12c32.js"
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/pages/_app-3aa8e0480fcf6efe.js"
+      src="/_next/static/chunks/pages/_app-8369e5d96efb8dc0.js"
       defer=""
     ></script>
     <script
-      src="/_next/static/chunks/pages/withRouter-5a3be48ff2139956.js"
+      src="/_next/static/chunks/pages/withRouter-ec8221aa829dfbbf.js"
       defer=""
     ></script>
     <script src="/_next/static/BUILD_ID/_buildManifest.js" defer=""></script>

Default Build with SWC (Increase detected ⚠️)
General Overall increase ⚠️
vercel/next.js canary shuding/next.js shu/1nsa Change
buildDuration 46.6s 45.6s -1.1s
buildDurationCached 10.8s 11.5s ⚠️ +632ms
nodeModulesSize 91.9 MB 91.9 MB ⚠️ +7.48 kB
nextStartRea..uration (ms) 358ms 356ms -2ms
nextDevReadyDuration 409ms 406ms -3ms
Page Load Tests Overall decrease ⚠️
vercel/next.js canary shuding/next.js shu/1nsa Change
/ failed reqs 0 0
/ total time (seconds) 13.312 13.864 ⚠️ +0.55
/ avg req/sec 187.8 180.32 ⚠️ -7.48
/error-in-render failed reqs 0 0
/error-in-render total time (seconds) 8.898 8.874 -0.02
/error-in-render avg req/sec 280.98 281.71 +0.73
Client Bundles (main, webpack) Overall decrease ✓
vercel/next.js canary shuding/next.js shu/1nsa Change
181.HASH.js gzip 178 B 178 B
690-HASH.js gzip 12.3 kB 12.3 kB -4 B
app-internal..HASH.js gzip 400 B 396 B -4 B
framework-HASH.js gzip 48.9 kB 48.9 kB
main-app-HASH.js gzip 3.99 kB 3.99 kB -1 B
main-HASH.js gzip 31 kB 31 kB -7 B
webpack-HASH.js gzip 1.71 kB 1.71 kB ⚠️ +1 B
Overall change 98.5 kB 98.4 kB -15 B
Legacy Client Bundles (polyfills)
vercel/next.js canary shuding/next.js shu/1nsa Change
polyfills-HASH.js gzip 31 kB 31 kB
Overall change 31 kB 31 kB
Client Pages Overall decrease ✓
vercel/next.js canary shuding/next.js shu/1nsa Change
_app-HASH.js gzip 195 B 194 B -1 B
_error-HASH.js gzip 188 B 187 B -1 B
amp-HASH.js gzip 485 B 487 B ⚠️ +2 B
css-HASH.js gzip 328 B 330 B ⚠️ +2 B
dynamic-HASH.js gzip 2.01 kB 2.01 kB -1 B
edge-ssr-HASH.js gzip 269 B 268 B -1 B
head-HASH.js gzip 357 B 357 B
hooks-HASH.js gzip 785 B 784 B -1 B
image-HASH.js gzip 4.83 kB 4.83 kB ⚠️ +1 B
index-HASH.js gzip 262 B 260 B -2 B
link-HASH.js gzip 2.36 kB 2.36 kB ⚠️ +2 B
routerDirect..HASH.js gzip 318 B 316 B -2 B
script-HASH.js gzip 392 B 392 B
withRouter-HASH.js gzip 314 B 311 B -3 B
85e02e95b279..7e3.css gzip 107 B 107 B
Overall change 13.2 kB 13.2 kB -5 B
Client Build Manifests
vercel/next.js canary shuding/next.js shu/1nsa Change
_buildManifest.js gzip 483 B 483 B
Overall change 483 B 483 B
Rendered Page Sizes Overall increase ⚠️
vercel/next.js canary shuding/next.js shu/1nsa Change
index.html gzip 512 B 513 B ⚠️ +1 B
link.html gzip 527 B 527 B
withRouter.html gzip 507 B 507 B
Overall change 1.55 kB 1.55 kB ⚠️ +1 B
Edge SSR bundle Size Overall decrease ✓
vercel/next.js canary shuding/next.js shu/1nsa Change
edge-ssr.js gzip 73.4 kB 61.3 kB -12.1 kB
page.js gzip 83.5 kB 71.4 kB -12.1 kB
Overall change 157 kB 133 kB -24.2 kB
Middleware size Overall increase ⚠️
vercel/next.js canary shuding/next.js shu/1nsa Change
middleware-b..fest.js gzip 605 B 608 B ⚠️ +3 B
middleware-r..fest.js gzip 144 B 145 B ⚠️ +1 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 ⚠️ +6 B

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-fb7a6ff38f5b43e7.js",
+    "static/chunks/webpack-4aa5df649b1ad8f8.js",
     "static/chunks/framework-86da37f78600f443.js",
-    "static/chunks/690-bc0b6cc7d3627807.js",
-    "static/chunks/main-app-e38a5658b35005ac.js"
+    "static/chunks/663-dce8a1ce95850a2e.js",
+    "static/chunks/main-app-bec7913c0985ef60.js"
   ],
   pages: {
     "/": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/index-b489cfccc7fe8a82.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/index-1c6d5cb3389c0fda.js"
     ],
     "/_app": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/_app-3aa8e0480fcf6efe.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/_app-8369e5d96efb8dc0.js"
     ],
     "/_error": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/_error-14aac49c05fd9095.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/_error-ec49c850a990fc29.js"
     ],
     "/amp": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/amp-7cee847fbebabada.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/amp-8889ed34ec7282bc.js"
     ],
     "/css": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
+      "static/chunks/main-fdfb972dd3e12c32.js",
       "static/css/94fdbc56eafa2039.css",
-      "static/chunks/pages/css-d88af72903aa3dc3.js"
+      "static/chunks/pages/css-b2d7b796b491182b.js"
     ],
     "/dynamic": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/dynamic-6ec7715e5b0823e8.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/dynamic-4daf6d394edf1efd.js"
     ],
     "/edge-ssr": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/edge-ssr-45b419bc554933db.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/edge-ssr-b11585671f603bcc.js"
     ],
     "/head": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/head-0d2dacae65905e96.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/head-e710037e9c5eb813.js"
     ],
     "/hooks": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/hooks-9e034aee1233fbb2.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/hooks-e6727bd4bdb477bc.js"
     ],
     "/image": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/image-ba6c016a675a4afe.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/image-0648ad587f836caf.js"
     ],
     "/link": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/link-56f9a8c000174955.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/link-2be346b97069919e.js"
     ],
     "/routerDirect": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/routerDirect-beccee3444f5a477.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/routerDirect-9c6c7141473d12cd.js"
     ],
     "/script": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/script-fd8bb4f62e64d07e.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/script-0a7505e409469374.js"
     ],
     "/withRouter": [
-      "static/chunks/webpack-fb7a6ff38f5b43e7.js",
+      "static/chunks/webpack-4aa5df649b1ad8f8.js",
       "static/chunks/framework-86da37f78600f443.js",
-      "static/chunks/main-333bbdca328120e1.js",
-      "static/chunks/pages/withRouter-5a3be48ff2139956.js"
+      "static/chunks/main-fdfb972dd3e12c32.js",
+      "static/chunks/pages/withRouter-ec8221aa829dfbbf.js"
     ]
   },
   ampFirstPages: []
Diff for middleware-r..-manifest.js
@@ -1,6 +1,6 @@
 self.__REACT_LOADABLE_MANIFEST = {
   "dynamic.js -> ../components/hello": {
-    id: 7888,
-    files: ["static/chunks/181.6508744652c65fe5.js"]
+    id: 9931,
+    files: ["static/chunks/931.91e338cfadce09c6.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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/adapter.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/server.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/get-hostname.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-locale.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/add-locale.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/parse-path.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/parse-path.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/relativize-url.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/compiled/cookie/index.js": /***/ module => {
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/compiled/ua-parser-js/ua-parser.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/internal-utils.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/adapter.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js"
       );
       var _utils = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/utils.js"
       );
       var _fetchEvent = __webpack_require__(
-        "(middleware)/./node_modules/.pnpm/file+..+main-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/fetch-event.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/request.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/response.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/router/utils/relativize-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/next-url.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/internal-utils.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/next-url.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/shared/lib/get-hostname.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/cookies.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/compiled/cookie/index.js"
+          "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/fetch-event.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/error.js"
+        "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/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_lqfy7qi362hpzkob7jlzuav3ki/node_modules/next/dist/server/web/spec-extension/request.js": /***/ (
+    /***/ "(middleware)/./node_modules/.pnpm/file+..+diff-repo+packages+next+next-packed.tgz_lqfy7qi362hpzkob7jlzuav3ki/node_mod
Post job cleanup.
[command]/usr/bin/git version
git version 2.37.3
Temporarily overriding HOME='/home/runner/work/_temp/2d7b6db8-40f5-4fc2-ac30-b6f5f6c7aba3' 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: 298dbc513aea242cdcabe06024a83e55d4c65dde

@feedthejim feedthejim marked this pull request as ready for review September 27, 2022 13:52
@feedthejim feedthejim marked this pull request as draft September 27, 2022 13:52
@feedthejim feedthejim marked this pull request as ready for review September 27, 2022 16:09
@feedthejim feedthejim self-assigned this Sep 27, 2022
@feedthejim feedthejim marked this pull request as draft September 27, 2022 16:56
@feedthejim feedthejim marked this pull request as ready for review September 28, 2022 15:53
@feedthejim feedthejim self-requested a review September 29, 2022 08:18
@shuding shuding merged commit e550222 into vercel:canary Sep 29, 2022
@shuding shuding deleted the shu/1nsa branch September 29, 2022 08:56
BowlingX pushed a commit to BowlingX/next.js that referenced this pull request Oct 5, 2022
When possible (`ReactRoot` enabled), we always use
`renderToReadableStream` to render the element to string and drop all
`renderToString` and `renderToStaticMarkup` usages. Since this is always
true for the Edge Runtime (which requires React 18+), so we can safely
eliminate the `./cjs/react-dom-server-legacy.browser.production.min.js`
module there
([ref](https://unpkg.com/browse/react-dom@18.2.0/server.browser.js)).

This reduces the gzipped bundle by 11kb (~9%). Let me know if there's
any concern or it's too hacky.

<img width="904" alt="image"
src="https://user-images.githubusercontent.com/11064311/192544933-298e3638-13ba-436d-9bcb-42dfb1224025.png">


## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have 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 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.md#adding-examples)

Co-authored-by: Jimmy Lai <laijimmy0@gmail.com>
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 29, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants