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

Turbopack: migrate client references to single-graph-traversal #73322

Draft
wants to merge 5 commits into
base: mischnic/mischnic/single-traversal-server-actions
Choose a base branch
from

Conversation

mischnic
Copy link
Contributor

No description provided.

@ijjk ijjk added created-by: Turbopack team PRs by the Turbopack team. Turbopack Related to Turbopack with Next.js. labels Nov 28, 2024
@mischnic mischnic changed the title migrate client references to single-traversal Turbopack : migrate client references to single-graph-traversal Nov 28, 2024
Copy link
Contributor Author

Warning

This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
Learn more

This stack of pull requests is managed by Graphite. Learn more about stacking.

@mischnic mischnic changed the title Turbopack : migrate client references to single-graph-traversal Turbopack: migrate client references to single-graph-traversal Nov 28, 2024
@ijjk
Copy link
Member

ijjk commented Nov 28, 2024

Failing test suites

Commit: 8ff267d

pnpm test test/integration/create-next-app/package-manager/bun.test.ts (turbopack)

  • create-next-app with package manager bun > should use bun for --use-bun flag
  • create-next-app with package manager bun > should use bun when user-agent is bun
  • create-next-app with package manager bun > should use bun for --use-bun flag with example
  • create-next-app with package manager bun > should use bun when user-agent is bun with example
Expand output

● create-next-app with package manager bun › should use bun for --use-bun flag

Command failed with exit code 217 (Unknown system error -217): npm i -g bun

  25 |     nextTgzFilename = pkgPaths.get('next')
  26 |
> 27 |     await command('bun', ['--version'])
     |     ^
  28 |       // install bun if not available
  29 |       .catch(() => command('npm', ['i', '-g', 'bun']))
  30 |   })

  at makeError (../node_modules/.pnpm/[email protected]/node_modules/execa/lib/error.js:58:11)
  at handlePromise (../node_modules/.pnpm/[email protected]/node_modules/execa/index.js:112:26)
  at Object.<anonymous> (integration/create-next-app/package-manager/bun.test.ts:27:5)

● create-next-app with package manager bun › should use bun when user-agent is bun

Command failed with exit code 217 (Unknown system error -217): npm i -g bun

  25 |     nextTgzFilename = pkgPaths.get('next')
  26 |
> 27 |     await command('bun', ['--version'])
     |     ^
  28 |       // install bun if not available
  29 |       .catch(() => command('npm', ['i', '-g', 'bun']))
  30 |   })

  at makeError (../node_modules/.pnpm/[email protected]/node_modules/execa/lib/error.js:58:11)
  at handlePromise (../node_modules/.pnpm/[email protected]/node_modules/execa/index.js:112:26)
  at Object.<anonymous> (integration/create-next-app/package-manager/bun.test.ts:27:5)

● create-next-app with package manager bun › should use bun for --use-bun flag with example

Command failed with exit code 217 (Unknown system error -217): npm i -g bun

  25 |     nextTgzFilename = pkgPaths.get('next')
  26 |
> 27 |     await command('bun', ['--version'])
     |     ^
  28 |       // install bun if not available
  29 |       .catch(() => command('npm', ['i', '-g', 'bun']))
  30 |   })

  at makeError (../node_modules/.pnpm/[email protected]/node_modules/execa/lib/error.js:58:11)
  at handlePromise (../node_modules/.pnpm/[email protected]/node_modules/execa/index.js:112:26)
  at Object.<anonymous> (integration/create-next-app/package-manager/bun.test.ts:27:5)

● create-next-app with package manager bun › should use bun when user-agent is bun with example

Command failed with exit code 217 (Unknown system error -217): npm i -g bun

  25 |     nextTgzFilename = pkgPaths.get('next')
  26 |
> 27 |     await command('bun', ['--version'])
     |     ^
  28 |       // install bun if not available
  29 |       .catch(() => command('npm', ['i', '-g', 'bun']))
  30 |   })

  at makeError (../node_modules/.pnpm/[email protected]/node_modules/execa/lib/error.js:58:11)
  at handlePromise (../node_modules/.pnpm/[email protected]/node_modules/execa/index.js:112:26)
  at Object.<anonymous> (integration/create-next-app/package-manager/bun.test.ts:27:5)

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

pnpm test-start-turbo test/e2e/app-dir/app-edge/app-edge.test.ts (turbopack)

  • app-dir edge SSR > should retrieve cookies in a server component in the edge runtime
  • app-dir edge SSR > should treat process as object without polyfill in edge runtime
  • app-dir edge SSR > should handle /index routes correctly
Expand output

● app-dir edge SSR › should retrieve cookies in a server component in the edge runtime

expect(received).toInclude(expected)

Expected string to include:
  "Hello"
Received:
  "Internal Server Error"

  22 |   it('should retrieve cookies in a server component in the edge runtime', async () => {
  23 |     const res = await next.fetch('/edge-apis/cookies')
> 24 |     expect(await res.text()).toInclude('Hello')
     |                              ^
  25 |   })
  26 |
  27 |   it('should treat process as object without polyfill in edge runtime', async () => {

  at Object.toInclude (e2e/app-dir/app-edge/app-edge.test.ts:24:30)

● app-dir edge SSR › should treat process as object without polyfill in edge runtime

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

Expected substring: "object"
Received string:    ""

  27 |   it('should treat process as object without polyfill in edge runtime', async () => {
  28 |     const $ = await next.render$('/edge-apis/process')
> 29 |     expect(await $('#process').text()).toContain('object')
     |                                        ^
  30 |   })
  31 |
  32 |   it('should handle /index routes correctly', async () => {

  at Object.toContain (e2e/app-dir/app-edge/app-edge.test.ts:29:40)

● app-dir edge SSR › should handle /index routes correctly

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

Expected substring: "the /index route"
Received string:    "Internal Server Error"

  32 |   it('should handle /index routes correctly', async () => {
  33 |     const appHtml = await next.render('/index')
> 34 |     expect(appHtml).toContain('the /index route')
     |                     ^
  35 |   })
  36 |
  37 |   if ((globalThis as any).isNextDev) {

  at Object.toContain (e2e/app-dir/app-edge/app-edge.test.ts:34:21)

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

pnpm test-dev-turbo test/e2e/app-dir/draft-mode/draft-mode.test.ts (turbopack)

  • app dir - draft mode > in edge runtime > should use initial rand when draft mode is disabled on /with-edge/index
  • app dir - draft mode > in edge runtime > should use initial rand when draft mode is disabled on /with-edge/with-cookies
  • app dir - draft mode > in edge runtime > should generate rand when draft mode enabled
  • app dir - draft mode > in edge runtime > should read other cookies when draft mode enabled
Expand output

● app dir - draft mode › in edge runtime › should use initial rand when draft mode is disabled on /with-edge/index

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

Expected: "DISABLED"
Received: ""

  14 |     it(`should use initial rand when draft mode is disabled on ${basePath}index`, async () => {
  15 |       const $ = await next.render$(basePath)
> 16 |       expect($('#mode').text()).toBe('DISABLED')
     |                                 ^
  17 |       expect($('#rand').text()).toBeDefined()
  18 |       origRandHome = $('#rand').text()
  19 |     })

  at Object.toBe (e2e/app-dir/draft-mode/draft-mode.test.ts:16:33)

● app dir - draft mode › in edge runtime › should use initial rand when draft mode is disabled on /with-edge/with-cookies

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

Expected: "DISABLED"
Received: ""

  21 |     it(`should use initial rand when draft mode is disabled on ${basePath}with-cookies`, async () => {
  22 |       const $ = await next.render$(`${basePath}with-cookies`)
> 23 |       expect($('#mode').text()).toBe('DISABLED')
     |                                 ^
  24 |       expect($('#rand').text()).toBeDefined()
  25 |       expect($('#data').text()).toBe('')
  26 |       origRandWithCookies = $('#rand').text()

  at Object.toBe (e2e/app-dir/draft-mode/draft-mode.test.ts:23:33)

● app dir - draft mode › in edge runtime › should generate rand when draft mode enabled

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

Expected: "ENABLED"
Received: ""

  70 |       const opts = { headers: { Cookie } }
  71 |       const $ = await next.render$(basePath, {}, opts)
> 72 |       expect($('#mode').text()).toBe('ENABLED')
     |                                 ^
  73 |       expect($('#rand').text()).not.toBe(origRandHome)
  74 |     })
  75 |

  at Object.toBe (e2e/app-dir/draft-mode/draft-mode.test.ts:72:33)

● app dir - draft mode › in edge runtime › should read other cookies when draft mode enabled

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

Expected: "ENABLED"
Received: ""

  77 |       const opts = { headers: { Cookie: `${Cookie};data=cool` } }
  78 |       const $ = await next.render$(`${basePath}with-cookies`, {}, opts)
> 79 |       expect($('#mode').text()).toBe('ENABLED')
     |                                 ^
  80 |       expect($('#rand').text()).not.toBe(origRandWithCookies)
  81 |       expect($('#data').text()).toBe('cool')
  82 |     })

  at Object.toBe (e2e/app-dir/draft-mode/draft-mode.test.ts:79:33)

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

pnpm test-dev-turbo test/e2e/app-dir/metadata-edge/index.test.ts (turbopack)

  • app dir - Metadata API on the Edge runtime > should render OpenGraph image meta tag correctly
Expand output

● app dir - Metadata API on the Edge runtime › should render OpenGraph image meta tag correctly

TypeError: Invalid URL

  23 |   it('should render OpenGraph image meta tag correctly', async () => {
  24 |     const html$ = await next.render$('/')
> 25 |     const ogUrl = new URL(html$('meta[property="og:image"]').attr('content'))
     |                   ^
  26 |     const imageBuffer = await (await next.fetch(ogUrl.pathname)).buffer()
  27 |
  28 |     const size = imageSize(imageBuffer)

  at Object.<anonymous> (e2e/app-dir/metadata-edge/index.test.ts:25:19)

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

pnpm test-start-turbo test/e2e/app-dir/css-order/css-order.test.ts (turbopack)

  • css-order turbo > should load correct styles navigating first -> second
  • css-order turbo > should load correct styles navigating first -> third
  • css-order turbo > should load correct styles navigating first -> first-client
  • css-order turbo > should load correct styles navigating first -> second-client
  • css-order turbo > should load correct styles navigating second -> first
  • css-order turbo > should load correct styles navigating second -> third
  • css-order turbo > should load correct styles navigating second -> first-client
  • css-order turbo > should load correct styles navigating second -> second-client
  • css-order turbo > should load correct styles navigating third -> first
  • css-order turbo > should load correct styles navigating third -> second
  • css-order turbo > should load correct styles navigating third -> first-client
  • css-order turbo > should load correct styles navigating third -> second-client
  • css-order turbo > should load correct styles navigating first-client -> first
  • css-order turbo > should load correct styles navigating first-client -> second
  • css-order turbo > should load correct styles navigating first-client -> third
  • css-order turbo > should load correct styles navigating second-client -> first
  • css-order turbo > should load correct styles navigating second-client -> second
  • css-order turbo > should load correct styles navigating second-client -> third
  • css-order turbo > should load correct styles navigating global-first -> global-second
  • css-order turbo > should load correct styles navigating global-second -> global-first
  • css-order turbo > should load correct styles on first
  • css-order turbo > should load correct styles on second
  • css-order turbo > should load correct styles on third
  • css-order turbo > should load correct styles on global-first
  • css-order turbo > should load correct styles on global-second
Expand output

● css-order turbo › should load correct styles navigating first -> second

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating first -> third

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating first -> first-client

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating first -> second-client

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating second -> first

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

Expected: "rgb(0, 128, 0)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating second -> third

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

Expected: "rgb(0, 128, 0)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating second -> first-client

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

Expected: "rgb(0, 128, 0)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating second -> second-client

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

Expected: "rgb(0, 128, 0)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating third -> first

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

Expected: "rgb(0, 128, 128)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating third -> second

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

Expected: "rgb(0, 128, 128)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating third -> first-client

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

Expected: "rgb(0, 128, 128)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating third -> second-client

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

Expected: "rgb(0, 128, 128)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating first-client -> first

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:330:11)

● css-order turbo › should load correct styles navigating first-client -> second

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

Expected: "rgb(0, 128, 0)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:330:11)

● css-order turbo › should load correct styles navigating first-client -> third

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

Expected: "rgb(0, 128, 128)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:330:11)

● css-order turbo › should load correct styles navigating second-client -> first

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:330:11)

● css-order turbo › should load correct styles navigating second-client -> second

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

Expected: "rgb(0, 128, 0)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:330:11)

● css-order turbo › should load correct styles navigating second-client -> third

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

Expected: "rgb(0, 128, 128)"
Received: "rgb(255, 1, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:330:11)

● css-order turbo › should load correct styles navigating global-first -> global-second

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

Expected: "rgb(0, 255, 0)"
Received: "rgb(255, 0, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles navigating global-second -> global-first

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  320 |               .waitForElementByCss(pageInfo.selector)
  321 |               .getComputedCss('color')
> 322 |           ).toBe(pageInfo.color)
      |             ^
  323 |         }
  324 |         const navigate = async (page) => {
  325 |           await browser.waitForElementByCss('#' + page).click()

  at toBe (e2e/app-dir/css-order/css-order.test.ts:322:13)
  at Object.<anonymous> (e2e/app-dir/css-order/css-order.test.ts:327:9)

● css-order turbo › should load correct styles on first

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  351 |             .waitForElementByCss(pageInfo.selector)
  352 |             .getComputedCss('color')
> 353 |         ).toBe(pageInfo.color)
      |           ^
  354 |         await browser.close()
  355 |       })
  356 |     }

  at Object.toBe (e2e/app-dir/css-order/css-order.test.ts:353:11)

● css-order turbo › should load correct styles on second

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

Expected: "rgb(0, 128, 0)"
Received: "rgb(255, 1, 0)"

  351 |             .waitForElementByCss(pageInfo.selector)
  352 |             .getComputedCss('color')
> 353 |         ).toBe(pageInfo.color)
      |           ^
  354 |         await browser.close()
  355 |       })
  356 |     }

  at Object.toBe (e2e/app-dir/css-order/css-order.test.ts:353:11)

● css-order turbo › should load correct styles on third

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

Expected: "rgb(0, 128, 128)"
Received: "rgb(255, 1, 0)"

  351 |             .waitForElementByCss(pageInfo.selector)
  352 |             .getComputedCss('color')
> 353 |         ).toBe(pageInfo.color)
      |           ^
  354 |         await browser.close()
  355 |       })
  356 |     }

  at Object.toBe (e2e/app-dir/css-order/css-order.test.ts:353:11)

● css-order turbo › should load correct styles on global-first

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

Expected: "rgb(0, 255, 0)"
Received: "rgb(255, 0, 0)"

  351 |             .waitForElementByCss(pageInfo.selector)
  352 |             .getComputedCss('color')
> 353 |         ).toBe(pageInfo.color)
      |           ^
  354 |         await browser.close()
  355 |       })
  356 |     }

  at Object.toBe (e2e/app-dir/css-order/css-order.test.ts:353:11)

● css-order turbo › should load correct styles on global-second

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

Expected: "rgb(0, 0, 255)"
Received: "rgb(255, 0, 0)"

  351 |             .waitForElementByCss(pageInfo.selector)
  352 |             .getComputedCss('color')
> 353 |         ).toBe(pageInfo.color)
      |           ^
  354 |         await browser.close()
  355 |       })
  356 |     }

  at Object.toBe (e2e/app-dir/css-order/css-order.test.ts:353:11)

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

pnpm test-start-turbo test/e2e/react-version/react-version.test.ts (turbopack)

  • react version > should use react-server condition for app router server components pages
Expand output

● react version › should use react-server condition for app router server components pages

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

Expected: "react-server"
Received: ""

  11 |     for (const route of rscPagesRoutes) {
  12 |       const $ = await next.render$(route)
> 13 |       expect($('#react-export-condition').text()).toBe('react-server')
     |                                                   ^
  14 |       expect($('#react-dom-export-condition').text()).toBe('react-server')
  15 |     }
  16 |   })

  at Object.toBe (e2e/react-version/react-version.test.ts:13:51)

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

pnpm test-start test/production/jest/index.test.ts

  • next/jest > should work
Expand output

● next/jest › should work

next build failed with code/signal 1

   98 |           if (code || signal)
   99 |             reject(
> 100 |               new Error(`next build failed with code/signal ${code || signal}`)
      |               ^
  101 |             )
  102 |           else resolve()
  103 |         })

  at ChildProcess.<anonymous> (lib/next-modes/next-start.ts:100:15)

● Test suite failed to run

TypeError: Cannot read properties of undefined (reading 'destroy')

  149 |     })
  150 |   })
> 151 |   afterAll(() => next.destroy())
      |                       ^
  152 |
  153 |   it('should work', async () => {
  154 |     const html = await renderViaHTTP(next.url, '/')

  at Object.destroy (production/jest/index.test.ts:151:23)

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

pnpm test-start test/production/jest/remove-react-properties/remove-react-properties-jest.test.ts

  • next/jest > data-testid should be removed in production
Expand output

● next/jest › data-testid should be removed in production

next build failed with code/signal 1

   98 |           if (code || signal)
   99 |             reject(
> 100 |               new Error(`next build failed with code/signal ${code || signal}`)
      |               ^
  101 |             )
  102 |           else resolve()
  103 |         })

  at ChildProcess.<anonymous> (lib/next-modes/next-start.ts:100:15)

● Test suite failed to run

TypeError: Cannot read properties of undefined (reading 'destroy')

  49 |     })
  50 |   })
> 51 |   afterAll(() => next.destroy())
     |                       ^
  52 |
  53 |   it('data-testid should be removed in production', async () => {
  54 |     const html = await renderViaHTTP(next.url, '/')

  at Object.destroy (production/jest/remove-react-properties/remove-react-properties-jest.test.ts:51:23)

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

pnpm test-start test/production/jest/new-link-behavior.test.ts

  • next/jest newLinkBehavior > should use new link behavior
Expand output

● next/jest newLinkBehavior › should use new link behavior

next build failed with code/signal 1

   98 |           if (code || signal)
   99 |             reject(
> 100 |               new Error(`next build failed with code/signal ${code || signal}`)
      |               ^
  101 |             )
  102 |           else resolve()
  103 |         })

  at ChildProcess.<anonymous> (lib/next-modes/next-start.ts:100:15)

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

pnpm test-start-turbo test/e2e/app-dir/app-static/app-static.test.ts (turbopack)

  • app-dir static/dynamic handling > should stream properly for /stale-cache-serving-edge/app-page
  • app-dir static/dynamic handling > should honor fetch cache correctly (edge)
  • app-dir static/dynamic handling > should not cache correctly with POST method request init
  • app-dir static/dynamic handling > should cache correctly with post method and revalidate edge
  • app-dir static/dynamic handling > should cache correctly with utf8 encoding edge
  • app-dir static/dynamic handling > should cache correctly handle JSON body
  • app-dir static/dynamic handling > should build dynamic param with edge runtime correctly
Expand output

● app-dir static/dynamic handling › should stream properly for /stale-cache-serving-edge/app-page

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

Expected: 200
Received: 500

  2758 |     // Prime the cache.
  2759 |     let res = await next.fetch(path)
> 2760 |     expect(res.status).toBe(200)
       |                        ^
  2761 |
  2762 |     // Consume the cache, the revalidations are completed on the end of the
  2763 |     // stream so we need to wait for that to complete.

  at toBe (e2e/app-dir/app-static/app-static.test.ts:2760:24)

● app-dir static/dynamic handling › should honor fetch cache correctly (edge)

TIMED OUT: success

undefined

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

Expected: 200
Received: 500

  731 |
  732 |   if (hardError) {
> 733 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  734 |   }
  735 |   return false
  736 | }

  at check (lib/next-test-utils.ts:733:11)
  at Object.<anonymous> (e2e/app-dir/app-static/app-static.test.ts:3299:5)

● app-dir static/dynamic handling › should not cache correctly with POST method request init

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

Expected: 200
Received: 500

  3395 |       '/variable-revalidate-edge/post-method-request'
  3396 |     )
> 3397 |     expect(res.status).toBe(200)
       |                        ^
  3398 |     const html = await res.text()
  3399 |     const $ = cheerio.load(html)
  3400 |

  at Object.toBe (e2e/app-dir/app-static/app-static.test.ts:3397:24)

● app-dir static/dynamic handling › should cache correctly with post method and revalidate edge

TIMED OUT: success

undefined

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

Expected: 200
Received: 500

  731 |
  732 |   if (hardError) {
> 733 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  734 |   }
  735 |   return false
  736 | }

  at check (lib/next-test-utils.ts:733:11)
  at Object.<anonymous> (e2e/app-dir/app-static/app-static.test.ts:3455:5)

● app-dir static/dynamic handling › should cache correctly with utf8 encoding edge

TIMED OUT: success

undefined

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

Expected: 200
Received: 500

  731 |
  732 |   if (hardError) {
> 733 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  734 |   }
  735 |   return false
  736 | }

  at check (lib/next-test-utils.ts:733:11)
  at Object.<anonymous> (e2e/app-dir/app-static/app-static.test.ts:3567:5)

● app-dir static/dynamic handling › should cache correctly handle JSON body

TIMED OUT: success

undefined

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

Expected: 200
Received: 500

  731 |
  732 |   if (hardError) {
> 733 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  734 |   }
  735 |   return false
  736 | }

  at check (lib/next-test-utils.ts:733:11)
  at Object.<anonymous> (e2e/app-dir/app-static/app-static.test.ts:3598:5)

● app-dir static/dynamic handling › should build dynamic param with edge runtime correctly

page.waitForSelector: Timeout 60000ms exceeded.
Call log:
  - waiting for locator('#slug')

  423 |     return this.chain(() => {
  424 |       return page
> 425 |         .waitForSelector(selector, { timeout, state: 'attached' })
      |          ^
  426 |         .then(async (el) => {
  427 |           // it seems selenium waits longer and tests rely on this behavior
  428 |           // so we wait for the load event fire before returning

  at waitForSelector (lib/browsers/playwright.ts:425:10)

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

pnpm test-dev-turbo test/e2e/app-dir/next-after-app/index.test.ts (turbopack)

  • unstable_after() in edge runtime > runs in dynamic pages
  • unstable_after() in edge runtime > runs in server actions
  • unstable_after() in edge runtime > runs in middleware
  • unstable_after() in edge runtime > only runs callbacks after the response is fully sent
  • unstable_after() in edge runtime > does not allow modifying cookies in a callback
  • unstable_after() in edge runtime > interrupted RSC renders > runs callbacks if redirect() was called
Expand output

● unstable_after() in edge runtime › runs in dynamic pages

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

Expected: 200
Received: 500

  42 |   it('runs in dynamic pages', async () => {
  43 |     const response = await next.fetch(pathPrefix + '/123/dynamic')
> 44 |     expect(response.status).toBe(200)
     |                             ^
  45 |     await retry(() => {
  46 |       expect(getLogs()).toContainEqual({ source: '[layout] /[id]' })
  47 |       expect(getLogs()).toContainEqual({

  at Object.toBe (e2e/app-dir/next-after-app/index.test.ts:44:29)

● unstable_after() in edge runtime › runs in server actions

thrown: "Exceeded timeout of 240000 ms for a test.
Add a timeout value to this test to increase the timeout, if this is a long-running test. See https://jestjs.io/docs/api#testname-fn-timeout."

  63 |   })
  64 |
> 65 |   it('runs in server actions', async () => {
     |   ^
  66 |     const browser = await next.browser(pathPrefix + '/123/with-action')
  67 |     expect(getLogs()).toContainEqual({
  68 |       source: '[layout] /[id]',

  at it (e2e/app-dir/next-after-app/index.test.ts:65:3)
      at Array.forEach (<anonymous>)
  at Object.runtimes (e2e/app-dir/next-after-app/index.test.ts:11:15)

● unstable_after() in edge runtime › interrupted RSC renders › runs callbacks if redirect() was called

expect(received).toContainEqual(expected) // deep equality

Expected value: {"source": "[page] /interrupted/redirect-target"}
Received array: [{"source": "[page] /interrupted/calls-redirect"}]

  106 |           source: '[page] /interrupted/calls-redirect',
  107 |         })
> 108 |         expect(getLogs()).toContainEqual({
      |                           ^
  109 |           source: '[page] /interrupted/redirect-target',
  110 |         })
  111 |       })

  at toContainEqual (e2e/app-dir/next-after-app/index.test.ts:108:27)
  at fn (lib/next-test-utils.ts:806:20)
  at Object.<anonymous> (e2e/app-dir/next-after-app/index.test.ts:104:7)

● unstable_after() in edge runtime › runs in middleware

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

Expected: 200
Received: 500

  139 |     )
  140 |
> 141 |     expect(res.status).toBe(200)
      |                        ^
  142 |     await retry(() => {
  143 |       expect(getLogs()).toContainEqual({
  144 |         source: '[middleware] /middleware/redirect-source',

  at Object.toBe (e2e/app-dir/next-after-app/index.test.ts:141:24)

● unstable_after() in edge runtime › only runs callbacks after the response is fully sent

pageStartedFetching was aborted

  158 |       const abort = (error: Error) => {
  159 |         pageStartedFetching.reject(
> 160 |           new Error('pageStartedFetching was aborted', { cause: error })
      |           ^
  161 |         )
  162 |         shouldSendResponse.reject(
  163 |           new Error('shouldSendResponse was aborted', {

  at abort (e2e/app-dir/next-after-app/index.test.ts:160:11)
  at abort (e2e/app-dir/next-after-app/index.test.ts:190:17)
  at Object.<anonymous> (e2e/app-dir/next-after-app/index.test.ts:201:9)

Cause:
Got non-200 response (500) for http://localhost:38189/edge/delay, aborting

  185 |             async (res) => {
  186 |               if (res.status !== 200) {
> 187 |                 const err = new Error(
      |                             ^
  188 |                   `Got non-200 response (${res.status}) for ${res.url}, aborting`
  189 |                 )
  190 |                 abort(err)

  at e2e/app-dir/next-after-app/index.test.ts:187:29
  at Object.<anonymous> (e2e/app-dir/next-after-app/index.test.ts:201:9)

● unstable_after() in edge runtime › does not allow modifying cookies in a callback

thrown: "Exceeded timeout of 240000 ms for a test.
Add a timeout value to this test to increase the timeout, if this is a long-running test. See https://jestjs.io/docs/api#testname-fn-timeout."

  243 |   })
  244 |
> 245 |   it('does not allow modifying cookies in a callback', async () => {
      |   ^
  246 |     const EXPECTED_ERROR =
  247 |       /An error occurred in a function passed to `unstable_after\(\)`: .+?: Cookies can only be modified in a Server Action or Route Handler\./
  248 |

  at it (e2e/app-dir/next-after-app/index.test.ts:245:3)
      at Array.forEach (<anonymous>)
  at Object.runtimes (e2e/app-dir/next-after-app/index.test.ts:11:15)

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

@ijjk
Copy link
Member

ijjk commented Nov 28, 2024

Stats from current PR

Default Build
General Overall increase ⚠️
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
buildDuration 26.8s 24s N/A
buildDurationCached 23s 20.6s N/A
nodeModulesSize 405 MB 405 MB ⚠️ +184 B
nextStartRea..uration (ms) 589ms 583ms N/A
Client Bundles (main, webpack)
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
131a20d7-HASH.js gzip 52.8 kB 52.8 kB N/A
1515-HASH.js gzip 48.9 kB 48.9 kB N/A
9408.HASH.js gzip 169 B 169 B
9705-HASH.js gzip 5.31 kB 5.3 kB N/A
framework-HASH.js gzip 57.6 kB 57.6 kB
main-app-HASH.js gzip 231 B 233 B N/A
main-HASH.js gzip 33.7 kB 33.7 kB N/A
webpack-HASH.js gzip 1.71 kB 1.71 kB N/A
Overall change 57.8 kB 57.8 kB
Legacy Client Bundles (polyfills)
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
polyfills-HASH.js gzip 39.4 kB 39.4 kB
Overall change 39.4 kB 39.4 kB
Client Pages
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
_app-HASH.js gzip 193 B 192 B N/A
_error-HASH.js gzip 194 B 192 B N/A
amp-HASH.js gzip 509 B 512 B N/A
css-HASH.js gzip 342 B 342 B
dynamic-HASH.js gzip 1.84 kB 1.85 kB N/A
edge-ssr-HASH.js gzip 265 B 265 B
head-HASH.js gzip 363 B 362 B N/A
hooks-HASH.js gzip 392 B 392 B
image-HASH.js gzip 4.43 kB 4.44 kB N/A
index-HASH.js gzip 268 B 268 B
link-HASH.js gzip 2.35 kB 2.34 kB N/A
routerDirect..HASH.js gzip 325 B 328 B N/A
script-HASH.js gzip 397 B 398 B N/A
withRouter-HASH.js gzip 325 B 323 B N/A
1afbb74e6ecf..834.css gzip 106 B 106 B
Overall change 1.37 kB 1.37 kB
Client Build Manifests
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
_buildManifest.js gzip 746 B 750 B N/A
Overall change 0 B 0 B
Rendered Page Sizes
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
index.html gzip 523 B 523 B
link.html gzip 536 B 538 B N/A
withRouter.html gzip 519 B 518 B N/A
Overall change 523 B 523 B
Edge SSR bundle Size
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
edge-ssr.js gzip 128 kB 128 kB N/A
page.js gzip 200 kB 200 kB N/A
Overall change 0 B 0 B
Middleware size
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
middleware-b..fest.js gzip 669 B 670 B N/A
middleware-r..fest.js gzip 155 B 155 B
middleware.js gzip 31 kB 31 kB N/A
edge-runtime..pack.js gzip 844 B 844 B
Overall change 999 B 999 B
Next Runtimes
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
732-experime...dev.js gzip 322 B 322 B
732.runtime.dev.js gzip 314 B 314 B
app-page-exp...dev.js gzip 320 kB 320 kB
app-page-exp..prod.js gzip 125 kB 125 kB
app-page-tur..prod.js gzip 138 kB 138 kB
app-page-tur..prod.js gzip 133 kB 133 kB
app-page.run...dev.js gzip 311 kB 311 kB
app-page.run..prod.js gzip 121 kB 121 kB
app-route-ex...dev.js gzip 36 kB 36 kB
app-route-ex..prod.js gzip 24.4 kB 24.4 kB
app-route-tu..prod.js gzip 24.4 kB 24.4 kB
app-route-tu..prod.js gzip 24.2 kB 24.2 kB
app-route.ru...dev.js gzip 37.7 kB 37.7 kB
app-route.ru..prod.js gzip 24.2 kB 24.2 kB
pages-api-tu..prod.js gzip 9.57 kB 9.57 kB
pages-api.ru...dev.js gzip 11.4 kB 11.4 kB
pages-api.ru..prod.js gzip 9.56 kB 9.56 kB
pages-turbo...prod.js gzip 21 kB 21 kB
pages.runtim...dev.js gzip 26.6 kB 26.6 kB
pages.runtim..prod.js gzip 21 kB 21 kB
server.runti..prod.js gzip 916 kB 916 kB
Overall change 2.33 MB 2.33 MB
build cache
vercel/next.js canary vercel/next.js mischnic/single-traversal-client-references Change
0.pack gzip 2.03 MB 2.03 MB N/A
index.pack gzip 148 kB 148 kB N/A
Overall change 0 B 0 B
Diff details
Diff for page.js
@@ -15,7 +15,7 @@
       /***/
     },
 
-    /***/ 9101: /***/ (
+    /***/ 3981: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -30,7 +30,7 @@
         default: () => /* binding */ nHandler,
       });
 
-      // NAMESPACE OBJECT: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?name=app%2Fapp-edge-ssr%2Fpage&page=%2Fapp-edge-ssr%2Fpage&pagePath=private-next-app-dir%2Fapp-edge-ssr%2Fpage.js&appDir=%2Ftmp%2Fnext-statsdT1Jtv%2Fstats-app%2Fapp&appPaths=%2Fapp-edge-ssr%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&flyingShuttle=false&preferredRegion=&middlewareConfig=e30%3D!./app/app-edge-ssr/page.js?__next_edge_ssr_entry__
+      // NAMESPACE OBJECT: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?name=app%2Fapp-edge-ssr%2Fpage&page=%2Fapp-edge-ssr%2Fpage&pagePath=private-next-app-dir%2Fapp-edge-ssr%2Fpage.js&appDir=%2Ftmp%2Fnext-statsdT1Jtv%2Fstats-app%2Fapp&appPaths=%2Fapp-edge-ssr%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&flyingShuttle=false&preferredRegion=&middlewareConfig=e30%3D!./app/app-edge-ssr/page.js?__next_edge_ssr_entry__
       var page_next_edge_ssr_entry_namespaceObject = {};
       __webpack_require__.r(page_next_edge_ssr_entry_namespaceObject);
       __webpack_require__.d(page_next_edge_ssr_entry_namespaceObject, {
@@ -84,43 +84,43 @@
         workUnitAsyncStorage: () => entry_base /* workUnitAsyncStorage */.FP,
       });
 
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/web/globals.js
-      var globals = __webpack_require__(2779);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/web/adapter.js + 3 modules
-      var adapter = __webpack_require__(7343);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/build/webpack/loaders/next-edge-ssr-loader/render.js + 84 modules
-      var render = __webpack_require__(1122);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/lib/incremental-cache/index.js + 5 modules
-      var incremental_cache = __webpack_require__(5992);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/app-render/app-render.js + 68 modules
-      var app_render = __webpack_require__(8010);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js
-      var module_compiled = __webpack_require__(5465);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/route-kind.js
-      var route_kind = __webpack_require__(3294);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/client/components/error-boundary.js
-      var error_boundary = __webpack_require__(2504);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/app-render/entry-base.js + 26 modules
-      var entry_base = __webpack_require__(7051); // ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?name=app%2Fapp-edge-ssr%2Fpage&page=%2Fapp-edge-ssr%2Fpage&pagePath=private-next-app-dir%2Fapp-edge-ssr%2Fpage.js&appDir=%2Ftmp%2Fnext-statsdT1Jtv%2Fstats-app%2Fapp&appPaths=%2Fapp-edge-ssr%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&flyingShuttle=false&preferredRegion=&middlewareConfig=e30%3D!./app/app-edge-ssr/page.js?__next_edge_ssr_entry__
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/web/globals.js
+      var globals = __webpack_require__(1516);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/web/adapter.js + 3 modules
+      var adapter = __webpack_require__(3158);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/build/webpack/loaders/next-edge-ssr-loader/render.js + 84 modules
+      var render = __webpack_require__(3885);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/lib/incremental-cache/index.js + 5 modules
+      var incremental_cache = __webpack_require__(4901);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/app-render/app-render.js + 68 modules
+      var app_render = __webpack_require__(967);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js
+      var module_compiled = __webpack_require__(8712);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/route-kind.js
+      var route_kind = __webpack_require__(8407);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/client/components/error-boundary.js
+      var error_boundary = __webpack_require__(3439);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/app-render/entry-base.js + 26 modules
+      var entry_base = __webpack_require__(7170); // ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?name=app%2Fapp-edge-ssr%2Fpage&page=%2Fapp-edge-ssr%2Fpage&pagePath=private-next-app-dir%2Fapp-edge-ssr%2Fpage.js&appDir=%2Ftmp%2Fnext-statsdT1Jtv%2Fstats-app%2Fapp&appPaths=%2Fapp-edge-ssr%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&flyingShuttle=false&preferredRegion=&middlewareConfig=e30%3D!./app/app-edge-ssr/page.js?__next_edge_ssr_entry__
       const module0 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 7997)
+          __webpack_require__.bind(__webpack_require__, 3039)
         );
       const module1 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 7364)
+          __webpack_require__.bind(__webpack_require__, 6413)
         );
       const module2 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 773)
+          __webpack_require__.bind(__webpack_require__, 8880)
         );
       const module3 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 9458)
+          __webpack_require__.bind(__webpack_require__, 4193)
         );
       const page4 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 5191)
+          __webpack_require__.bind(__webpack_require__, 7993)
         );
 
       // We inject the tree and pages here so that we can use them in the route
@@ -188,12 +188,12 @@
       });
 
       //# sourceMappingURL=app-page.js.map
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/lib/page-types.js
-      var page_types = __webpack_require__(3721);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/app-render/encryption-utils.js
-      var encryption_utils = __webpack_require__(1672);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/esm/server/app-render/action-utils.js
-      var action_utils = __webpack_require__(8587); // ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/dist/build/webpack/loaders/next-edge-ssr-loader/index.js?{"absolute500Path":"","absoluteAppPath":"next/dist/pages/_app","absoluteDocumentPath":"next/dist/pages/_document","absoluteErrorPath":"next/dist/pages/_error","absolutePagePath":"private-next-app-dir/app-edge-ssr/page.js","dev":false,"isServerComponent":true,"page":"/app-edge-ssr/page","stringifiedConfig":"eyJlbnYiOnt9LCJlc2xpbnQiOnsiaWdub3JlRHVyaW5nQnVpbGRzIjpmYWxzZX0sInR5cGVzY3JpcHQiOnsiaWdub3JlQnVpbGRFcnJvcnMiOmZhbHNlLCJ0c2NvbmZpZ1BhdGgiOiJ0c2NvbmZpZy5qc29uIn0sImRpc3REaXIiOiIubmV4dCIsImNsZWFuRGlzdERpciI6dHJ1ZSwiYXNzZXRQcmVmaXgiOiIiLCJjYWNoZU1heE1lbW9yeVNpemUiOjUyNDI4ODAwLCJjb25maWdPcmlnaW4iOiJuZXh0LmNvbmZpZy5qcyIsInVzZUZpbGVTeXN0ZW1QdWJsaWNSb3V0ZXMiOnRydWUsImdlbmVyYXRlRXRhZ3MiOnRydWUsInBhZ2VFeHRlbnNpb25zIjpbInRzeCIsInRzIiwianN4IiwianMiXSwicG93ZXJlZEJ5SGVhZGVyIjp0cnVlLCJjb21wcmVzcyI6dHJ1ZSwiaW1hZ2VzIjp7ImRldmljZVNpemVzIjpbNjQwLDc1MCw4MjgsMTA4MCwxMjAwLDE5MjAsMjA0OCwzODQwXSwiaW1hZ2VTaXplcyI6WzE2LDMyLDQ4LDY0LDk2LDEyOCwyNTYsMzg0XSwicGF0aCI6Ii9fbmV4dC9pbWFnZSIsImxvYWRlciI6ImRlZmF1bHQiLCJsb2FkZXJGaWxlIjoiIiwiZG9tYWlucyI6W10sImRpc2FibGVTdGF0aWNJbWFnZXMiOmZhbHNlLCJtaW5pbXVtQ2FjaGVUVEwiOjYwLCJmb3JtYXRzIjpbImltYWdlL3dlYnAiXSwiZGFuZ2Vyb3VzbHlBbGxvd1NWRyI6ZmFsc2UsImNvbnRlbnRTZWN1cml0eVBvbGljeSI6InNjcmlwdC1zcmMgJ25vbmUnOyBmcmFtZS1zcmMgJ25vbmUnOyBzYW5kYm94OyIsImNvbnRlbnREaXNwb3NpdGlvblR5cGUiOiJhdHRhY2htZW50IiwicmVtb3RlUGF0dGVybnMiOltdLCJ1bm9wdGltaXplZCI6ZmFsc2V9LCJkZXZJbmRpY2F0b3JzIjp7ImFwcElzclN0YXR1cyI6dHJ1ZSwiYnVpbGRBY3Rpdml0eSI6dHJ1ZSwiYnVpbGRBY3Rpdml0eVBvc2l0aW9uIjoiYm90dG9tLXJpZ2h0In0sIm9uRGVtYW5kRW50cmllcyI6eyJtYXhJbmFjdGl2ZUFnZSI6NjAwMDAsInBhZ2VzQnVmZmVyTGVuZ3RoIjo1fSwiYW1wIjp7ImNhbm9uaWNhbEJhc2UiOiIifSwiYmFzZVBhdGgiOiIiLCJzYXNzT3B0aW9ucyI6e30sInRyYWlsaW5nU2xhc2giOmZhbHNlLCJpMThuIjpudWxsLCJwcm9kdWN0aW9uQnJvd3NlclNvdXJjZU1hcHMiOmZhbHNlLCJleGNsdWRlRGVmYXVsdE1vbWVudExvY2FsZXMiOnRydWUsInNlcnZlclJ1bnRpbWVDb25maWciOnt9LCJwdWJsaWNSdW50aW1lQ29uZmlnIjp7fSwicmVhY3RQcm9kdWN0aW9uUHJvZmlsaW5nIjpmYWxzZSwicmVhY3RTdHJpY3RNb2RlIjpudWxsLCJyZWFjdE1heEhlYWRlcnNMZW5ndGgiOjYwMDAsImh0dHBBZ2VudE9wdGlvbnMiOnsia2VlcEFsaXZlIjp0cnVlfSwibG9nZ2luZyI6e30sImV4cGlyZVRpbWUiOjMxNTM2MDAwLCJzdGF0aWNQYWdlR2VuZXJhdGlvblRpbWVvdXQiOjYwLCJtb2R1bGFyaXplSW1wb3J0cyI6eyJAbXVpL2ljb25zLW1hdGVyaWFsIjp7InRyYW5zZm9ybSI6IkBtdWkvaWNvbnMtbWF0ZXJpYWwve3ttZW1iZXJ9fSJ9LCJsb2Rhc2giOnsidHJhbnNmb3JtIjoibG9kYXNoL3t7bWVtYmVyfX0ifX0sIm91dHB1dEZpbGVUcmFjaW5nUm9vdCI6Ii90bXAvbmV4dC1zdGF0c2RUMUp0di9zdGF0cy1hcHAiLCJleHBlcmltZW50YWwiOnsiY2FjaGVMaWZlIjp7ImRlZmF1bHQiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6OTAwLCJleHBpcmUiOjQyOTQ5NjcyOTR9LCJzZWNvbmRzIjp7InN0YWxlIjowLCJyZXZhbGlkYXRlIjoxLCJleHBpcmUiOjYwfSwibWludXRlcyI6eyJzdGFsZSI6MzAwLCJyZXZhbGlkYXRlIjo2MCwiZXhwaXJlIjozNjAwfSwiaG91cnMiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6MzYwMCwiZXhwaXJlIjo4NjQwMH0sImRheXMiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6ODY0MDAsImV4cGlyZSI6NjA0ODAwfSwid2Vla3MiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6NjA0ODAwLCJleHBpcmUiOjI1OTIwMDB9LCJtYXgiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6MjU5MjAwMCwiZXhwaXJlIjo0Mjk0OTY3Mjk0fX0sImNhY2hlSGFuZGxlcnMiOnt9LCJjc3NDaHVua2luZyI6dHJ1ZSwibXVsdGlab25lRHJhZnRNb2RlIjpmYWxzZSwiYXBwTmF2RmFpbEhhbmRsaW5nIjpmYWxzZSwicHJlcmVuZGVyRWFybHlFeGl0Ijp0cnVlLCJzZXJ2ZXJNaW5pZmljYXRpb24iOnRydWUsInNlcnZlclNvdXJjZU1hcHMiOmZhbHNlLCJsaW5rTm9Ub3VjaFN0YXJ0IjpmYWxzZSwiY2FzZVNlbnNpdGl2ZVJvdXRlcyI6ZmFsc2UsImNsaWVudFNlZ21lbnRDYWNoZSI6ZmFsc2UsInByZWxvYWRFbnRyaWVzT25TdGFydCI6dHJ1ZSwiY2xpZW50Um91dGVyRmlsdGVyIjp0cnVlLCJjbGllbnRSb3V0ZXJGaWx0ZXJSZWRpcmVjdHMiOmZhbHNlLCJmZXRjaENhY2hlS2V5UHJlZml4IjoiIiwibWlkZGxld2FyZVByZWZldGNoIjoiZmxleGlibGUiLCJvcHRpbWlzdGljQ2xpZW50Q2FjaGUiOnRydWUsIm1hbnVhbENsaWVudEJhc2VQYXRoIjpmYWxzZSwiY3B1cyI6MTksIm1lbW9yeUJhc2VkV29ya2Vyc0NvdW50IjpmYWxzZSwiaW1nT3B0Q29uY3VycmVuY3kiOm51bGwsImltZ09wdFRpbWVvdXRJblNlY29uZHMiOjcsImltZ09wdE1heElucHV0UGl4ZWxzIjoyNjg0MDI2ODksImltZ09wdFNlcXVlbnRpYWxSZWFkIjpudWxsLCJpc3JGbHVzaFRvRGlzayI6dHJ1ZSwid29ya2VyVGhyZWFkcyI6ZmFsc2UsIm9wdGltaXplQ3NzIjpmYWxzZSwibmV4dFNjcmlwdFdvcmtlcnMiOmZhbHNlLCJzY3JvbGxSZXN0b3JhdGlvbiI6ZmFsc2UsImV4dGVybmFsRGlyIjpmYWxzZSwiZGlzYWJsZU9wdGltaXplZExvYWRpbmciOmZhbHNlLCJnemlwU2l6ZSI6dHJ1ZSwiY3JhQ29tcGF0IjpmYWxzZSwiZXNtRXh0ZXJuYWxzIjp0cnVlLCJmdWxseVNwZWNpZmllZCI6ZmFsc2UsInN3Y1RyYWNlUHJvZmlsaW5nIjpmYWxzZSwiZm9yY2VTd2NUcmFuc2Zvcm1zIjpmYWxzZSwibGFyZ2VQYWdlRGF0YUJ5dGVzIjoxMjgwMDAsInR1cmJvIjp7InJvb3QiOiIvdG1wL25leHQtc3RhdHNkVDFKdHYvc3RhdHMtYXBwIn0sInR5cGVkUm91dGVzIjpmYWxzZSwidHlwZWRFbnYiOmZhbHNlLCJwYXJhbGxlbFNlcnZlckNvbXBpbGVzIjpmYWxzZSwicGFyYWxsZWxTZXJ2ZXJCdWlsZFRyYWNlcyI6ZmFsc2UsInBwciI6ZmFsc2UsImF1dGhJbnRlcnJ1cHRzIjpmYWxzZSwicmVhY3RPd25lclN0YWNrIjpmYWxzZSwid2VicGFja01lbW9yeU9wdGltaXphdGlvbnMiOmZhbHNlLCJvcHRpbWl6ZVNlcnZlclJlYWN0Ijp0cnVlLCJ1c2VFYXJseUltcG9ydCI6ZmFsc2UsInN0YWxlVGltZXMiOnsiZHluYW1pYyI6MCwic3RhdGljIjozMDB9LCJhZnRlciI6ZmFsc2UsInNlcnZlckNvbXBvbmVudHNIbXJDYWNoZSI6dHJ1ZSwic3RhdGljR2VuZXJhdGlvbk1heENvbmN1cnJlbmN5Ijo4LCJzdGF0aWNHZW5lcmF0aW9uTWluUGFnZXNQZXJXb3JrZXIiOjI1LCJkeW5hbWljSU8iOmZhbHNlLCJpbmxpbmVDc3MiOmZhbHNlLCJvcHRpbWl6ZVBhY2thZ2VJbXBvcnRzIjpbImx1Y2lkZS1yZWFjdCIsImRhdGUtZm5zIiwibG9kYXNoLWVzIiwicmFtZGEiLCJhbnRkIiwicmVhY3QtYm9vdHN0cmFwIiwiYWhvb2tzIiwiQGFudC1kZXNpZ24vaWNvbnMiLCJAaGVhZGxlc3N1aS9yZWFjdCIsIkBoZWFkbGVzc3VpLWZsb2F0L3JlYWN0IiwiQGhlcm9pY29ucy9yZWFjdC8yMC9zb2xpZCIsIkBoZXJvaWNvbnMvcmVhY3QvMjQvc29saWQiLCJAaGVyb2ljb25zL3JlYWN0LzI0L291dGxpbmUiLCJAdmlzeC92aXN4IiwiQHRyZW1vci9yZWFjdCIsInJ4anMiLCJAbXVpL21hdGVyaWFsIiwiQG11aS9pY29ucy1tYXRlcmlhbCIsInJlY2hhcnRzIiwicmVhY3QtdXNlIiwiZWZmZWN0IiwiQGVmZmVjdC9zY2hlbWEiLCJAZWZmZWN0L3BsYXRmb3JtIiwiQGVmZmVjdC9wbGF0Zm9ybS1ub2RlIiwiQGVmZmVjdC9wbGF0Zm9ybS1icm93c2VyIiwiQGVmZmVjdC9wbGF0Zm9ybS1idW4iLCJAZWZmZWN0L3NxbCIsIkBlZmZlY3Qvc3FsLW1zc3FsIiwiQGVmZmVjdC9zcWwtbXlzcWwyIiwiQGVmZmVjdC9zcWwtcGciLCJAZWZmZWN0L3NxbC1zcXVsaXRlLW5vZGUiLCJAZWZmZWN0L3NxbC1zcXVsaXRlLWJ1biIsIkBlZmZlY3Qvc3FsLXNxdWxpdGUtd2FzbSIsIkBlZmZlY3Qvc3FsLXNxdWxpdGUtcmVhY3QtbmF0aXZlIiwiQGVmZmVjdC9ycGMiLCJAZWZmZWN0L3JwYy1odHRwIiwiQGVmZmVjdC90eXBlY2xhc3MiLCJAZWZmZWN0L2V4cGVyaW1lbnRhbCIsIkBlZmZlY3Qvb3BlbnRlbGVtZXRyeSIsIkBtYXRlcmlhbC11aS9jb3JlIiwiQG1hdGVyaWFsLXVpL2ljb25zIiwiQHRhYmxlci9pY29ucy1yZWFjdCIsIm11aS1jb3JlIiwicmVhY3QtaWNvbnMvYWkiLCJyZWFjdC1pY29ucy9iaSIsInJlYWN0LWljb25zL2JzIiwicmVhY3QtaWNvbnMvY2ciLCJyZWFjdC1pY29ucy9jaSIsInJlYWN0LWljb25zL2RpIiwicmVhY3QtaWNvbnMvZmEiLCJyZWFjdC1pY29ucy9mYTYiLCJyZWFjdC1pY29ucy9mYyIsInJlYWN0LWljb25zL2ZpIiwicmVhY3QtaWNvbnMvZ2kiLCJyZWFjdC1pY29ucy9nbyIsInJlYWN0LWljb25zL2dyIiwicmVhY3QtaWNvbnMvaGkiLCJyZWFjdC1pY29ucy9oaTIiLCJyZWFjdC1pY29ucy9pbSIsInJlYWN0LWljb25zL2lvIiwicmVhY3QtaWNvbnMvaW81IiwicmVhY3QtaWNvbnMvbGlhIiwicmVhY3QtaWNvbnMvbGliIiwicmVhY3QtaWNvbnMvbHUiLCJyZWFjdC1pY29ucy9tZCIsInJlYWN0LWljb25zL3BpIiwicmVhY3QtaWNvbnMvcmkiLCJyZWFjdC1pY29ucy9yeCIsInJlYWN0LWljb25zL3NpIiwicmVhY3QtaWNvbnMvc2wiLCJyZWFjdC1pY29ucy90YiIsInJlYWN0LWljb25zL3RmaSIsInJlYWN0LWljb25zL3RpIiwicmVhY3QtaWNvbnMvdnNjIiwicmVhY3QtaWNvbnMvd2kiXX0sImJ1bmRsZVBhZ2VzUm91dGVyRGVwZW5kZW5jaWVzIjpmYWxzZSwiY29uZmlnRmlsZSI6Ii90bXAvbmV4dC1zdGF0c2RUMUp0di9zdGF0cy1hcHAvbmV4dC5jb25maWcuanMiLCJjb25maWdGaWxlTmFtZSI6Im5leHQuY29uZmlnLmpzIn0=","pagesType":"app","appDirLoader":"bmV4dC1hcHAtbG9hZGVyP25hbWU9YXBwJTJGYXBwLWVkZ2Utc3NyJTJGcGFnZSZwYWdlPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZVBhdGg9cHJpdmF0ZS1uZXh0LWFwcC1kaXIlMkZhcHAtZWRnZS1zc3IlMkZwYWdlLmpzJmFwcERpcj0lMkZ0bXAlMkZuZXh0LXN0YXRzZFQxSnR2JTJGc3RhdHMtYXBwJTJGYXBwJmFwcFBhdGhzPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZUV4dGVuc2lvbnM9dHN4JnBhZ2VFeHRlbnNpb25zPXRzJnBhZ2VFeHRlbnNpb25zPWpzeCZwYWdlRXh0ZW5zaW9ucz1qcyZiYXNlUGF0aD0mYXNzZXRQcmVmaXg9Jm5leHRDb25maWdPdXRwdXQ9JmZseWluZ1NodXR0bGU9ZmFsc2UmcHJlZmVycmVkUmVnaW9uPSZtaWRkbGV3YXJlQ29uZmlnPWUzMCUzRCE=","sriEnabled":false,"middlewareConfig":"e30=","cacheHandlers":"{}"}!
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/lib/page-types.js
+      var page_types = __webpack_require__(8018);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/app-render/encryption-utils.js
+      var encryption_utils = __webpack_require__(3655);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/esm/server/app-render/action-utils.js
+      var action_utils = __webpack_require__(8840); // ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/dist/build/webpack/loaders/next-edge-ssr-loader/index.js?{"absolute500Path":"","absoluteAppPath":"next/dist/pages/_app","absoluteDocumentPath":"next/dist/pages/_document","absoluteErrorPath":"next/dist/pages/_error","absolutePagePath":"private-next-app-dir/app-edge-ssr/page.js","dev":false,"isServerComponent":true,"page":"/app-edge-ssr/page","stringifiedConfig":"eyJlbnYiOnt9LCJlc2xpbnQiOnsiaWdub3JlRHVyaW5nQnVpbGRzIjpmYWxzZX0sInR5cGVzY3JpcHQiOnsiaWdub3JlQnVpbGRFcnJvcnMiOmZhbHNlLCJ0c2NvbmZpZ1BhdGgiOiJ0c2NvbmZpZy5qc29uIn0sImRpc3REaXIiOiIubmV4dCIsImNsZWFuRGlzdERpciI6dHJ1ZSwiYXNzZXRQcmVmaXgiOiIiLCJjYWNoZU1heE1lbW9yeVNpemUiOjUyNDI4ODAwLCJjb25maWdPcmlnaW4iOiJuZXh0LmNvbmZpZy5qcyIsInVzZUZpbGVTeXN0ZW1QdWJsaWNSb3V0ZXMiOnRydWUsImdlbmVyYXRlRXRhZ3MiOnRydWUsInBhZ2VFeHRlbnNpb25zIjpbInRzeCIsInRzIiwianN4IiwianMiXSwicG93ZXJlZEJ5SGVhZGVyIjp0cnVlLCJjb21wcmVzcyI6dHJ1ZSwiaW1hZ2VzIjp7ImRldmljZVNpemVzIjpbNjQwLDc1MCw4MjgsMTA4MCwxMjAwLDE5MjAsMjA0OCwzODQwXSwiaW1hZ2VTaXplcyI6WzE2LDMyLDQ4LDY0LDk2LDEyOCwyNTYsMzg0XSwicGF0aCI6Ii9fbmV4dC9pbWFnZSIsImxvYWRlciI6ImRlZmF1bHQiLCJsb2FkZXJGaWxlIjoiIiwiZG9tYWlucyI6W10sImRpc2FibGVTdGF0aWNJbWFnZXMiOmZhbHNlLCJtaW5pbXVtQ2FjaGVUVEwiOjYwLCJmb3JtYXRzIjpbImltYWdlL3dlYnAiXSwiZGFuZ2Vyb3VzbHlBbGxvd1NWRyI6ZmFsc2UsImNvbnRlbnRTZWN1cml0eVBvbGljeSI6InNjcmlwdC1zcmMgJ25vbmUnOyBmcmFtZS1zcmMgJ25vbmUnOyBzYW5kYm94OyIsImNvbnRlbnREaXNwb3NpdGlvblR5cGUiOiJhdHRhY2htZW50IiwicmVtb3RlUGF0dGVybnMiOltdLCJ1bm9wdGltaXplZCI6ZmFsc2V9LCJkZXZJbmRpY2F0b3JzIjp7ImFwcElzclN0YXR1cyI6dHJ1ZSwiYnVpbGRBY3Rpdml0eSI6dHJ1ZSwiYnVpbGRBY3Rpdml0eVBvc2l0aW9uIjoiYm90dG9tLXJpZ2h0In0sIm9uRGVtYW5kRW50cmllcyI6eyJtYXhJbmFjdGl2ZUFnZSI6NjAwMDAsInBhZ2VzQnVmZmVyTGVuZ3RoIjo1fSwiYW1wIjp7ImNhbm9uaWNhbEJhc2UiOiIifSwiYmFzZVBhdGgiOiIiLCJzYXNzT3B0aW9ucyI6e30sInRyYWlsaW5nU2xhc2giOmZhbHNlLCJpMThuIjpudWxsLCJwcm9kdWN0aW9uQnJvd3NlclNvdXJjZU1hcHMiOmZhbHNlLCJleGNsdWRlRGVmYXVsdE1vbWVudExvY2FsZXMiOnRydWUsInNlcnZlclJ1bnRpbWVDb25maWciOnt9LCJwdWJsaWNSdW50aW1lQ29uZmlnIjp7fSwicmVhY3RQcm9kdWN0aW9uUHJvZmlsaW5nIjpmYWxzZSwicmVhY3RTdHJpY3RNb2RlIjpudWxsLCJyZWFjdE1heEhlYWRlcnNMZW5ndGgiOjYwMDAsImh0dHBBZ2VudE9wdGlvbnMiOnsia2VlcEFsaXZlIjp0cnVlfSwibG9nZ2luZyI6e30sImV4cGlyZVRpbWUiOjMxNTM2MDAwLCJzdGF0aWNQYWdlR2VuZXJhdGlvblRpbWVvdXQiOjYwLCJtb2R1bGFyaXplSW1wb3J0cyI6eyJAbXVpL2ljb25zLW1hdGVyaWFsIjp7InRyYW5zZm9ybSI6IkBtdWkvaWNvbnMtbWF0ZXJpYWwve3ttZW1iZXJ9fSJ9LCJsb2Rhc2giOnsidHJhbnNmb3JtIjoibG9kYXNoL3t7bWVtYmVyfX0ifX0sIm91dHB1dEZpbGVUcmFjaW5nUm9vdCI6Ii90bXAvbmV4dC1zdGF0c2RUMUp0di9zdGF0cy1hcHAiLCJleHBlcmltZW50YWwiOnsiY2FjaGVMaWZlIjp7ImRlZmF1bHQiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6OTAwLCJleHBpcmUiOjQyOTQ5NjcyOTR9LCJzZWNvbmRzIjp7InN0YWxlIjowLCJyZXZhbGlkYXRlIjoxLCJleHBpcmUiOjYwfSwibWludXRlcyI6eyJzdGFsZSI6MzAwLCJyZXZhbGlkYXRlIjo2MCwiZXhwaXJlIjozNjAwfSwiaG91cnMiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6MzYwMCwiZXhwaXJlIjo4NjQwMH0sImRheXMiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6ODY0MDAsImV4cGlyZSI6NjA0ODAwfSwid2Vla3MiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6NjA0ODAwLCJleHBpcmUiOjI1OTIwMDB9LCJtYXgiOnsic3RhbGUiOjMwMCwicmV2YWxpZGF0ZSI6MjU5MjAwMCwiZXhwaXJlIjo0Mjk0OTY3Mjk0fX0sImNhY2hlSGFuZGxlcnMiOnt9LCJjc3NDaHVua2luZyI6dHJ1ZSwibXVsdGlab25lRHJhZnRNb2RlIjpmYWxzZSwiYXBwTmF2RmFpbEhhbmRsaW5nIjpmYWxzZSwicHJlcmVuZGVyRWFybHlFeGl0Ijp0cnVlLCJzZXJ2ZXJNaW5pZmljYXRpb24iOnRydWUsInNlcnZlclNvdXJjZU1hcHMiOmZhbHNlLCJsaW5rTm9Ub3VjaFN0YXJ0IjpmYWxzZSwiY2FzZVNlbnNpdGl2ZVJvdXRlcyI6ZmFsc2UsImNsaWVudFNlZ21lbnRDYWNoZSI6ZmFsc2UsInByZWxvYWRFbnRyaWVzT25TdGFydCI6dHJ1ZSwiY2xpZW50Um91dGVyRmlsdGVyIjp0cnVlLCJjbGllbnRSb3V0ZXJGaWx0ZXJSZWRpcmVjdHMiOmZhbHNlLCJmZXRjaENhY2hlS2V5UHJlZml4IjoiIiwibWlkZGxld2FyZVByZWZldGNoIjoiZmxleGlibGUiLCJvcHRpbWlzdGljQ2xpZW50Q2FjaGUiOnRydWUsIm1hbnVhbENsaWVudEJhc2VQYXRoIjpmYWxzZSwiY3B1cyI6MTksIm1lbW9yeUJhc2VkV29ya2Vyc0NvdW50IjpmYWxzZSwiaW1nT3B0Q29uY3VycmVuY3kiOm51bGwsImltZ09wdFRpbWVvdXRJblNlY29uZHMiOjcsImltZ09wdE1heElucHV0UGl4ZWxzIjoyNjg0MDI2ODksImltZ09wdFNlcXVlbnRpYWxSZWFkIjpudWxsLCJpc3JGbHVzaFRvRGlzayI6dHJ1ZSwid29ya2VyVGhyZWFkcyI6ZmFsc2UsIm9wdGltaXplQ3NzIjpmYWxzZSwibmV4dFNjcmlwdFdvcmtlcnMiOmZhbHNlLCJzY3JvbGxSZXN0b3JhdGlvbiI6ZmFsc2UsImV4dGVybmFsRGlyIjpmYWxzZSwiZGlzYWJsZU9wdGltaXplZExvYWRpbmciOmZhbHNlLCJnemlwU2l6ZSI6dHJ1ZSwiY3JhQ29tcGF0IjpmYWxzZSwiZXNtRXh0ZXJuYWxzIjp0cnVlLCJmdWxseVNwZWNpZmllZCI6ZmFsc2UsInN3Y1RyYWNlUHJvZmlsaW5nIjpmYWxzZSwiZm9yY2VTd2NUcmFuc2Zvcm1zIjpmYWxzZSwibGFyZ2VQYWdlRGF0YUJ5dGVzIjoxMjgwMDAsInR1cmJvIjp7InJvb3QiOiIvdG1wL25leHQtc3RhdHNkVDFKdHYvc3RhdHMtYXBwIn0sInR5cGVkUm91dGVzIjpmYWxzZSwidHlwZWRFbnYiOmZhbHNlLCJwYXJhbGxlbFNlcnZlckNvbXBpbGVzIjpmYWxzZSwicGFyYWxsZWxTZXJ2ZXJCdWlsZFRyYWNlcyI6ZmFsc2UsInBwciI6ZmFsc2UsImF1dGhJbnRlcnJ1cHRzIjpmYWxzZSwicmVhY3RPd25lclN0YWNrIjpmYWxzZSwid2VicGFja01lbW9yeU9wdGltaXphdGlvbnMiOmZhbHNlLCJvcHRpbWl6ZVNlcnZlclJlYWN0Ijp0cnVlLCJ1c2VFYXJseUltcG9ydCI6ZmFsc2UsInN0YWxlVGltZXMiOnsiZHluYW1pYyI6MCwic3RhdGljIjozMDB9LCJhZnRlciI6ZmFsc2UsInNlcnZlckNvbXBvbmVudHNIbXJDYWNoZSI6dHJ1ZSwic3RhdGljR2VuZXJhdGlvbk1heENvbmN1cnJlbmN5Ijo4LCJzdGF0aWNHZW5lcmF0aW9uTWluUGFnZXNQZXJXb3JrZXIiOjI1LCJkeW5hbWljSU8iOmZhbHNlLCJpbmxpbmVDc3MiOmZhbHNlLCJvcHRpbWl6ZVBhY2thZ2VJbXBvcnRzIjpbImx1Y2lkZS1yZWFjdCIsImRhdGUtZm5zIiwibG9kYXNoLWVzIiwicmFtZGEiLCJhbnRkIiwicmVhY3QtYm9vdHN0cmFwIiwiYWhvb2tzIiwiQGFudC1kZXNpZ24vaWNvbnMiLCJAaGVhZGxlc3N1aS9yZWFjdCIsIkBoZWFkbGVzc3VpLWZsb2F0L3JlYWN0IiwiQGhlcm9pY29ucy9yZWFjdC8yMC9zb2xpZCIsIkBoZXJvaWNvbnMvcmVhY3QvMjQvc29saWQiLCJAaGVyb2ljb25zL3JlYWN0LzI0L291dGxpbmUiLCJAdmlzeC92aXN4IiwiQHRyZW1vci9yZWFjdCIsInJ4anMiLCJAbXVpL21hdGVyaWFsIiwiQG11aS9pY29ucy1tYXRlcmlhbCIsInJlY2hhcnRzIiwicmVhY3QtdXNlIiwiZWZmZWN0IiwiQGVmZmVjdC9zY2hlbWEiLCJAZWZmZWN0L3BsYXRmb3JtIiwiQGVmZmVjdC9wbGF0Zm9ybS1ub2RlIiwiQGVmZmVjdC9wbGF0Zm9ybS1icm93c2VyIiwiQGVmZmVjdC9wbGF0Zm9ybS1idW4iLCJAZWZmZWN0L3NxbCIsIkBlZmZlY3Qvc3FsLW1zc3FsIiwiQGVmZmVjdC9zcWwtbXlzcWwyIiwiQGVmZmVjdC9zcWwtcGciLCJAZWZmZWN0L3NxbC1zcXVsaXRlLW5vZGUiLCJAZWZmZWN0L3NxbC1zcXVsaXRlLWJ1biIsIkBlZmZlY3Qvc3FsLXNxdWxpdGUtd2FzbSIsIkBlZmZlY3Qvc3FsLXNxdWxpdGUtcmVhY3QtbmF0aXZlIiwiQGVmZmVjdC9ycGMiLCJAZWZmZWN0L3JwYy1odHRwIiwiQGVmZmVjdC90eXBlY2xhc3MiLCJAZWZmZWN0L2V4cGVyaW1lbnRhbCIsIkBlZmZlY3Qvb3BlbnRlbGVtZXRyeSIsIkBtYXRlcmlhbC11aS9jb3JlIiwiQG1hdGVyaWFsLXVpL2ljb25zIiwiQHRhYmxlci9pY29ucy1yZWFjdCIsIm11aS1jb3JlIiwicmVhY3QtaWNvbnMvYWkiLCJyZWFjdC1pY29ucy9iaSIsInJlYWN0LWljb25zL2JzIiwicmVhY3QtaWNvbnMvY2ciLCJyZWFjdC1pY29ucy9jaSIsInJlYWN0LWljb25zL2RpIiwicmVhY3QtaWNvbnMvZmEiLCJyZWFjdC1pY29ucy9mYTYiLCJyZWFjdC1pY29ucy9mYyIsInJlYWN0LWljb25zL2ZpIiwicmVhY3QtaWNvbnMvZ2kiLCJyZWFjdC1pY29ucy9nbyIsInJlYWN0LWljb25zL2dyIiwicmVhY3QtaWNvbnMvaGkiLCJyZWFjdC1pY29ucy9oaTIiLCJyZWFjdC1pY29ucy9pbSIsInJlYWN0LWljb25zL2lvIiwicmVhY3QtaWNvbnMvaW81IiwicmVhY3QtaWNvbnMvbGlhIiwicmVhY3QtaWNvbnMvbGliIiwicmVhY3QtaWNvbnMvbHUiLCJyZWFjdC1pY29ucy9tZCIsInJlYWN0LWljb25zL3BpIiwicmVhY3QtaWNvbnMvcmkiLCJyZWFjdC1pY29ucy9yeCIsInJlYWN0LWljb25zL3NpIiwicmVhY3QtaWNvbnMvc2wiLCJyZWFjdC1pY29ucy90YiIsInJlYWN0LWljb25zL3RmaSIsInJlYWN0LWljb25zL3RpIiwicmVhY3QtaWNvbnMvdnNjIiwicmVhY3QtaWNvbnMvd2kiXX0sImJ1bmRsZVBhZ2VzUm91dGVyRGVwZW5kZW5jaWVzIjpmYWxzZSwiY29uZmlnRmlsZSI6Ii90bXAvbmV4dC1zdGF0c2RUMUp0di9zdGF0cy1hcHAvbmV4dC5jb25maWcuanMiLCJjb25maWdGaWxlTmFtZSI6Im5leHQuY29uZmlnLmpzIn0=","pagesType":"app","appDirLoader":"bmV4dC1hcHAtbG9hZGVyP25hbWU9YXBwJTJGYXBwLWVkZ2Utc3NyJTJGcGFnZSZwYWdlPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZVBhdGg9cHJpdmF0ZS1uZXh0LWFwcC1kaXIlMkZhcHAtZWRnZS1zc3IlMkZwYWdlLmpzJmFwcERpcj0lMkZ0bXAlMkZuZXh0LXN0YXRzZFQxSnR2JTJGc3RhdHMtYXBwJTJGYXBwJmFwcFBhdGhzPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZUV4dGVuc2lvbnM9dHN4JnBhZ2VFeHRlbnNpb25zPXRzJnBhZ2VFeHRlbnNpb25zPWpzeCZwYWdlRXh0ZW5zaW9ucz1qcyZiYXNlUGF0aD0mYXNzZXRQcmVmaXg9Jm5leHRDb25maWdPdXRwdXQ9JmZseWluZ1NodXR0bGU9ZmFsc2UmcHJlZmVycmVkUmVnaW9uPSZtaWRkbGV3YXJlQ29uZmlnPWUzMCUzRCE=","sriEnabled":false,"middlewareConfig":"e30=","cacheHandlers":"{}"}!
       var _self___RSC_MANIFEST;
 
       const incrementalCacheHandler = null;
@@ -480,105 +480,105 @@
       /***/
     },
 
-    /***/ 9778: /***/ (
+    /***/ 8439: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 9800)
+        __webpack_require__.bind(__webpack_require__, 9527)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1842)
+        __webpack_require__.bind(__webpack_require__, 2791)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 2132)
+        __webpack_require__.bind(__webpack_require__, 939)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 2504)
+        __webpack_require__.bind(__webpack_require__, 3439)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 5515)
+        __webpack_require__.bind(__webpack_require__, 5822)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1451)
+        __webpack_require__.bind(__webpack_require__, 538)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 9637)
+        __webpack_require__.bind(__webpack_require__, 6286)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 2784)
+        __webpack_require__.bind(__webpack_require__, 5224)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 7754)
+        __webpack_require__.bind(__webpack_require__, 1093)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1129)
+        __webpack_require__.bind(__webpack_require__, 5362)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 2792)
+        __webpack_require__.bind(__webpack_require__, 8575)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 4226)
+        __webpack_require__.bind(__webpack_require__, 253)
       );
 
       /***/
     },
 
-    /***/ 7930: /***/ (
+    /***/ 1583: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 4089)
+        __webpack_require__.bind(__webpack_require__, 212)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 9302)
+        __webpack_require__.bind(__webpack_require__, 619)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 3880)
+        __webpack_require__.bind(__webpack_require__, 6647)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 6044)
+        __webpack_require__.bind(__webpack_require__, 3371)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 3940)
+        __webpack_require__.bind(__webpack_require__, 7210)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1791)
+        __webpack_require__.bind(__webpack_require__, 9488)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 7161)
+        __webpack_require__.bind(__webpack_require__, 986)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 3171)
+        __webpack_require__.bind(__webpack_require__, 4086)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 5782)
+        __webpack_require__.bind(__webpack_require__, 105)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 4085)
+        __webpack_require__.bind(__webpack_require__, 9670)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1444)
+        __webpack_require__.bind(__webpack_require__, 4515)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 950)
+        __webpack_require__.bind(__webpack_require__, 8777)
       );
 
       /***/
     },
 
-    /***/ 8594: /***/ () => {
+    /***/ 5055: /***/ () => {
       /***/
     },
 
-    /***/ 6746: /***/ () => {
+    /***/ 4887: /***/ () => {
       /***/
     },
 
-    /***/ 5191: /***/ (
+    /***/ 7993: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -598,7 +598,7 @@
       /***/
     },
 
-    /***/ 7997: /***/ (
+    /***/ 3039: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -610,7 +610,7 @@
         /* harmony export */
       });
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
-        __webpack_require__(2036);
+        __webpack_require__(9466);
 
       function RootLayout({ children }) {
         return /*#__PURE__*/ (0,
@@ -629,7 +629,7 @@
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
-    /******/ __webpack_require__.O(0, [630, 333], () => __webpack_exec__(9101));
+    /******/ __webpack_require__.O(0, [752, 58], () => __webpack_exec__(3981));
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ (_ENTRIES = typeof _ENTRIES === "undefined" ? {} : _ENTRIES)[
       "middleware_app/app-edge-ssr/page"
Diff for middleware.js

Diff too large to display

Diff for edge-ssr.js

Diff too large to display

Diff for image-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [2983],
   {
-    /***/ 1277: /***/ (
+    /***/ 7740: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/image",
         function () {
-          return __webpack_require__(7750);
+          return __webpack_require__(9582);
         },
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 141: /***/ (module, exports, __webpack_require__) => {
+    /***/ 2169: /***/ (module, exports, __webpack_require__) => {
       "use strict";
       /* __next_internal_client_entry_do_not_use__  cjs */
       Object.defineProperty(exports, "__esModule", {
@@ -40,17 +40,17 @@
         __webpack_require__(4961)
       );
       const _head = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(9272)
+        __webpack_require__(6404)
       );
-      const _getimgprops = __webpack_require__(9353);
-      const _imageconfig = __webpack_require__(6004);
-      const _imageconfigcontextsharedruntime = __webpack_require__(558);
-      const _warnonce = __webpack_require__(1444);
-      const _routercontextsharedruntime = __webpack_require__(4231);
+      const _getimgprops = __webpack_require__(4173);
+      const _imageconfig = __webpack_require__(8672);
+      const _imageconfigcontextsharedruntime = __webpack_require__(4154);
+      const _warnonce = __webpack_require__(1512);
+      const _routercontextsharedruntime = __webpack_require__(1075);
       const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(3109)
+        __webpack_require__(3697)
       );
-      const _usemergedref = __webpack_require__(1082);
+      const _usemergedref = __webpack_require__(5598);
       // This is replaced by webpack define plugin
       const configEnv = {
         deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
@@ -371,7 +371,7 @@
       /***/
     },
 
-    /***/ 1082: /***/ (module, exports, __webpack_require__) => {
+    /***/ 5598: /***/ (module, exports, __webpack_require__) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -432,7 +432,7 @@
       /***/
     },
 
-    /***/ 9353: /***/ (
+    /***/ 4173: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -448,9 +448,9 @@
           return getImgProps;
         },
       });
-      const _warnonce = __webpack_require__(1444);
-      const _imageblursvg = __webpack_require__(6240);
-      const _imageconfig = __webpack_require__(6004);
+      const _warnonce = __webpack_require__(1512);
+      const _imageblursvg = __webpack_require__(2356);
+      const _imageconfig = __webpack_require__(8672);
       const VALID_LOADING_VALUES =
         /* unused pure expression or super */ null && [
           "lazy",
@@ -824,7 +824,7 @@
       /***/
     },
 
-    /***/ 6240: /***/ (__unused_webpack_module, exports) => {
+    /***/ 2356: /***/ (__unused_webpack_module, exports) => {
       "use strict";
       /**
        * A shared function, used on both client and server, to generate a SVG blur placeholder.
@@ -879,7 +879,7 @@
       /***/
     },
 
-    /***/ 9893: /***/ (
+    /***/ 1609: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -906,10 +906,10 @@
         },
       });
       const _interop_require_default = __webpack_require__(1739);
-      const _getimgprops = __webpack_require__(9353);
-      const _imagecomponent = __webpack_require__(141);
+      const _getimgprops = __webpack_require__(4173);
+      const _imagecomponent = __webpack_require__(2169);
       const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(3109)
+        __webpack_require__(3697)
       );
       function getImageProps(imgProps) {
         const { props } = (0, _getimgprops.getImgProps)(imgProps, {
@@ -941,7 +941,7 @@
       /***/
     },
 
-    /***/ 3109: /***/ (__unused_webpack_module, exports) => {
+    /***/ 3697: /***/ (__unused_webpack_module, exports) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -976,7 +976,7 @@
       /***/
     },
 
-    /***/ 7750: /***/ (
+    /***/ 9582: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -993,8 +993,8 @@
 
       // EXTERNAL MODULE: ./node_modules/.pnpm/[email protected]/node_modules/react/jsx-runtime.js
       var jsx_runtime = __webpack_require__(9035);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_kp7s4ef2voul2kphq24roenapq/node_modules/next/image.js
-      var next_image = __webpack_require__(5912);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-b01722d5-20241114_re_g2b75t4yyljcdn7exmmiht4tum/node_modules/next/image.js
+      var next_image = __webpack_require__(761);
       var image_default = /*#__PURE__*/ __webpack_require__.n(next_image); // ./pages/nextjs.png
       /* harmony default export */ const nextjs = {
         src: "/_next/static/media/nextjs.cae0b805.png",
@@ -1024,12 +1024,12 @@
       /***/
     },
 
-    /***/ 5912: /***/ (
+    /***/ 761: /***/ (
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(9893);
+      module.exports = __webpack_require__(1609);
 
       /***/
     },
@@ -1039,7 +1039,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(1277)
+      __webpack_exec__(7740)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for 1515-HASH.js

Diff too large to display

Diff for main-HASH.js

Diff too large to display

Commit: 8ff267d

@mischnic mischnic force-pushed the mischnic/mischnic/single-traversal-server-actions branch from da8ef0c to 699e475 Compare November 28, 2024 17:43
@mischnic mischnic force-pushed the mischnic/single-traversal-client-references branch from 258f18e to 9551e4a Compare November 28, 2024 17:44
@mischnic mischnic force-pushed the mischnic/mischnic/single-traversal-server-actions branch from 699e475 to 356c01e Compare November 29, 2024 09:17
@mischnic mischnic force-pushed the mischnic/single-traversal-client-references branch from 9551e4a to 293356b Compare November 29, 2024 09:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
created-by: Turbopack team PRs by the Turbopack team. Turbopack Related to Turbopack with Next.js.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants