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

Upgrade React from 2d16326d-20240930 to 459fd418-20241001 #70714

Closed
wants to merge 5 commits into from

Conversation

@ijjk ijjk added CI approved Approve running CI for fork create-next-app Related to our CLI tool for quickly starting a new Next.js application. examples Issue/PR related to examples tests type: next labels Oct 2, 2024
@ijjk
Copy link
Member

ijjk commented Oct 2, 2024

Failing test suites

Commit: 7bf1f95

TURBOPACK=1 pnpm test test/integration/app-dir-export/test/dev-custom-dist-dir.test.ts (turbopack)

  • app dir - with output export and custom distDir (next dev) > should render properly
Expand output

● app dir - with output export and custom distDir (next dev) › should render properly

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

Expected: 200
Received: 500

  31 |   it('should render properly', async () => {
  32 |     const res = await fetchViaHTTP(appPort, '/')
> 33 |     expect(res.status).toBe(200)
     |                        ^
  34 |     expect(await res.text()).toContain('Home')
  35 |   })
  36 | })

  at Object.toBe (integration/app-dir-export/test/dev-custom-dist-dir.test.ts:33:24)

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

@ijjk
Copy link
Member

ijjk commented Oct 2, 2024

Failing test suites

Commit: 7bf1f95

pnpm test test/integration/app-dir-export/test/dev-custom-dist-dir.test.ts

  • app dir - with output export and custom distDir (next dev) > should render properly
Expand output

● app dir - with output export and custom distDir (next dev) › should render properly

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

Expected: 200
Received: 500

  31 |   it('should render properly', async () => {
  32 |     const res = await fetchViaHTTP(appPort, '/')
> 33 |     expect(res.status).toBe(200)
     |                        ^
  34 |     expect(await res.text()).toContain('Home')
  35 |   })
  36 | })

  at Object.toBe (integration/app-dir-export/test/dev-custom-dist-dir.test.ts:33:24)

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

@ijjk
Copy link
Member

ijjk commented Oct 2, 2024

Failing test suites

Commit: 7bf1f95

TURBOPACK=1 pnpm test test/integration/app-dir-export/test/dev-custom-dist-dir.test.ts (turbopack)

  • app dir - with output export and custom distDir (next dev) > should render properly
Expand output

● app dir - with output export and custom distDir (next dev) › should render properly

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

Expected: 200
Received: 500

  31 |   it('should render properly', async () => {
  32 |     const res = await fetchViaHTTP(appPort, '/')
> 33 |     expect(res.status).toBe(200)
     |                        ^
  34 |     expect(await res.text()).toContain('Home')
  35 |   })
  36 | })

  at Object.toBe (integration/app-dir-export/test/dev-custom-dist-dir.test.ts:33:24)

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

__NEXT_EXPERIMENTAL_PPR=true pnpm test-dev test/development/app-dir/dynamic-error-trace/index.test.ts (PPR)

  • app dir - dynamic error trace > should show the error trace
Expand output

● app dir - dynamic error trace › should show the error trace

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

- Expected  - 0
+ Received  + 2

  Array [
    "",
    "",
+   "",
+   "",
  ]

  46 |       stackFrameElements.map((f) => f.innerText())
  47 |     )
> 48 |     expect(stackFrames).toEqual(isReactExperimental ? ['', ''] : [])
     |                         ^
  49 |
  50 |     const codeframe = await getRedboxSource(browser)
  51 |     // TODO(NDX-115): column for "^"" marker is inconsistent between native, Webpack, and Turbopack

  at Object.toEqual (development/app-dir/dynamic-error-trace/index.test.ts:48:25)

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

TURBOPACK=1 pnpm test-dev test/development/acceptance-app/dynamic-error.test.ts (turbopack)

  • dynamic = "error" in devmode > should show error overlay when dynamic is forced
Expand output

● dynamic = "error" in devmode › should show error overlay when dynamic is forced

Expected Redbox but found none

  31 |     )
  32 |
> 33 |     await session.assertHasRedbox()
     |     ^
  34 |     console.log(await session.getRedboxDescription())
  35 |     expect(await session.getRedboxDescription()).toMatchInlineSnapshot(
  36 |       `"Error: Route /server with \`dynamic = "error"\` couldn't be rendered statically because it used \`cookies\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering"`

  at Object.<anonymous> (development/acceptance-app/dynamic-error.test.ts:33:5)

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

TURBOPACK=1 pnpm test-dev test/development/app-dir/dev-fetch-hmr/dev-fetch-hmr.test.ts (turbopack)

  • dev-fetch-hmr > should retain module level fetch patching
Expand output

● dev-fetch-hmr › should retain module level fetch patching

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

Expected: "touch to trigger HMR"
Received: ""

  21 |     expect(magicNumber2).toBe(magicNumber)
  22 |     const update = cheerio.load(html2)('#update').text()
> 23 |     expect(update).toBe('touch to trigger HMR')
     |                    ^
  24 |
  25 |     // trigger HMR
  26 |     await next.patchFile('app/page.tsx', (content) =>

  at Object.toBe (development/app-dir/dev-fetch-hmr/dev-fetch-hmr.test.ts:23:20)

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

pnpm test test/integration/babel-next-image/babel-next-image.test.js

  • babel-next-image > should work with babel and next/image
Expand output

● babel-next-image › should work with babel and next/image

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

Expected: 200
Received: 500

  15 |   it('should work with babel and next/image', async () => {
  16 |     const res = await fetchViaHTTP(appPort, '/')
> 17 |     expect(res.status).toBe(200)
     |                        ^
  18 |   })
  19 | })
  20 |

  at Object.toBe (integration/babel-next-image/babel-next-image.test.js:17:24)

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

pnpm test-dev test/development/app-dir/hmr-shared-css/hmr-shared-css.test.ts

  • hmr-app-and-pages > should do HMR when app router and pages router have shared CSS
Expand output

● hmr-app-and-pages › should do HMR when app router and pages router have shared CSS

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

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

  13 |     expect(
  14 |       await browser.elementByCss('body').getComputedCss('background-color')
> 15 |     ).toEqual('rgb(255, 255, 255)')
     |       ^
  16 |
  17 |     await next.patchFile('app/styles.css', (content) =>
  18 |       content.replace(

  at Object.toEqual (development/app-dir/hmr-shared-css/hmr-shared-css.test.ts:15:7)

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

pnpm test-dev test/development/app-dir/missing-required-html-tags/index.test.ts

  • app-dir - missing required html tags > should hmr when you fix the error
Expand output

● app-dir - missing required html tags › should hmr when you fix the error

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

Expected: "The following tags are missing in the Root Layout: <html>.
Read more at https://nextjs.org/docs/messages/missing-root-layout-tags"
Received: null

  31 |     // Wait for the HMR to apply and the updated error to show.
  32 |     await retry(async () => {
> 33 |       expect(await getRedboxDescription(browser)).toEqual(outdent`
     |                                                   ^
  34 |         The following tags are missing in the Root Layout: <html>.
  35 |         Read more at https://nextjs.org/docs/messages/missing-root-layout-tags
  36 |       `)

  at toEqual (development/app-dir/missing-required-html-tags/index.test.ts:33:51)
  at retry (lib/next-test-utils.ts:806:14)
  at Object.<anonymous> (development/app-dir/missing-required-html-tags/index.test.ts:32:5)

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

TURBOPACK=1 pnpm test-dev test/development/app-dir/edge-errors-hmr/index.test.ts (turbopack)

  • develop - app-dir - edge errros hmr > should recover from build errors when server component error
  • develop - app-dir - edge errros hmr > should recover from build errors when client component error
Expand output

● develop - app-dir - edge errros hmr › should recover from build errors when server component error

Expected Redbox but found none

  15 |     })
  16 |
> 17 |     await assertHasRedbox(browser)
     |     ^
  18 |
  19 |     await next.patchFile('app/comp.server.js', clientComponentSource)
  20 |

  at Object.<anonymous> (development/app-dir/edge-errors-hmr/index.test.ts:17:5)

● develop - app-dir - edge errros hmr › should recover from build errors when client component error

Expected no Redbox but found one
header: Build Error
Next.js (15.0.0-canary.176) (turbo)

Failed to compile
description: Failed to compile
source: ./app/comp.server.js:9:5
Parsing ecmascript source code failed
   7 |       {/* Uncomment the following line and save file to see the error: */}
   8 |       <
>  9 |     </div>
     |     ^
  10 |   )
  11 | }
  12 |

Expression expected

  34 |     await next.patchFile('app/comp.client.js', clientComponentSource)
  35 |
> 36 |     await assertNoRedbox(browser)
     |     ^
  37 |   })
  38 | })
  39 |

  at Object.<anonymous> (development/app-dir/edge-errors-hmr/index.test.ts:36:5)

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

__NEXT_EXPERIMENTAL_PPR=true pnpm test-dev test/e2e/app-dir/app-edge/app-edge.test.ts (PPR)

  • app-dir edge SSR > should resolve client component without error
Expand output

● app-dir edge SSR › should resolve client component without error

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

- Expected  -  1
+ Received  + 17

- Array []
+ Array [
+   " In route /with-client a searchParam property was accessed directly with `searchParams.toJSON`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
+ ",
+   " In route /with-client a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
+ ",
+   " In route /with-client a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
+ ",
+   " In route /with-client a searchParam property was accessed directly with `searchParams.status`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
+ ",
+   " In route /with-client a searchParam property was accessed directly with `searchParams.toJSON`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
+ ",
+   " In route /with-client a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
+  In route /with-client a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
+ ",
+   " In route /with-client a searchParam property was accessed directly with `searchParams.status`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
+ ",
+ ]

  77 |       const html = await next.render('/with-client')
  78 |       expect(html).toContain('My Button')
> 79 |       expect(logs).toEqual([])
     |                    ^
  80 |     })
  81 |
  82 |     it('should handle edge rsc hmr', async () => {

  at Object.toEqual (e2e/app-dir/app-edge/app-edge.test.ts:79:20)

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

__NEXT_EXPERIMENTAL_PPR=true pnpm test-dev test/e2e/app-dir/dynamic-io/dynamic-io.draft-mode.test.ts (PPR)

  • dynamic-io > should fully prerender pages that use draftMode
Expand output

● dynamic-io › should fully prerender pages that use draftMode

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

- Expected  -  1
+ Received  + 10

- Array []
+ Array [
+   " In route /draftmode/async a searchParam property was accessed directly with `searchParams.toJSON`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis",
+   " In route /draftmode/async a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis",
+   " In route /draftmode/async a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis",
+   " In route /draftmode/async a searchParam property was accessed directly with `searchParams.status`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis",
+   " In route /draftmode/async a searchParam property was accessed directly with `searchParams.toJSON`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis",
+   " In route /draftmode/async a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis",
+   " In route /draftmode/async a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis",
+   " In route /draftmode/async a searchParam property was accessed directly with `searchParams.status`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis",
+ ]

  32 |       expect($('#page').text()).toBe('at runtime')
  33 |       expect($('#draft-mode').text()).toBe('false')
> 34 |       expect(getLines('In route /draftmode')).toEqual([])
     |                                               ^
  35 |     } else {
  36 |       expect($('#layout').text()).toBe('at buildtime')
  37 |       expect($('#page').text()).toBe('at buildtime')

  at Object.toEqual (e2e/app-dir/dynamic-io/dynamic-io.draft-mode.test.ts:34:47)

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

__NEXT_EXPERIMENTAL_PPR=true pnpm test-dev test/e2e/app-dir/dynamic-io/dynamic-io.cookies.test.ts (PPR)

  • dynamic-io > should be able to access cookie properties asynchronously
  • dynamic-io > should be able to access cookie properties synchronously
Expand output

● dynamic-io › should be able to access cookie properties asynchronously

expect(received).toHaveLength(expected)

Expected length: 0
Received length: 8
Received array:  [" In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.toJSON`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis", " In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis", " In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis", " In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.status`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis", " In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.toJSON`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis", " In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis", " In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.$$typeof`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis", " In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.status`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis"]

  130 |       .filter((l) => l.includes('In route /cookies/exercise'))
  131 |
> 132 |     expect(cookieWarnings).toHaveLength(0)
      |                            ^
  133 |
  134 |     // For...of iteration
  135 |     expect($('#for-of-x-sentinel').text()).toContain('hello')

  at Object.toHaveLength (e2e/app-dir/dynamic-io/dynamic-io.cookies.test.ts:132:28)

● dynamic-io › should be able to access cookie properties synchronously

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

Expected substring: "cookies were iterated over"
Received string:    " In route /cookies/exercise/async a searchParam property was accessed directly with `searchParams.toJSON`. `searchParams` should be awaited before accessing properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis"

  202 |     expect($('#for-of-x-sentinel-rand').text()).toContain('x-sentinel-rand')
  203 |     if (isNextDev) {
> 204 |       expect(cookieWarnings[i++]).toContain('cookies were iterated over')
      |                                   ^
  205 |     }
  206 |
  207 |     // ...spread iteration

  at Object.toContain (e2e/app-dir/dynamic-io/dynamic-io.cookies.test.ts:204:35)

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

pnpm test-dev test/development/basic/barrel-optimization/barrel-optimization-mui.test.ts

  • Skipped in Turbopack > optimizePackageImports - mui > should support MUI
Expand output

● Skipped in Turbopack › optimizePackageImports - mui › should support MUI

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

Expected substring: "button"
Received string:    ""

  29 |         // Ensure that MUI is working
  30 |         const $ = await next.render$('/mui')
> 31 |         expect(await $('#button').text()).toContain('button')
     |                                           ^
  32 |         expect(await $('#typography').text()).toContain('typography')
  33 |
  34 |         const browser = await next.browser('/mui')

  at Object.toContain (development/basic/barrel-optimization/barrel-optimization-mui.test.ts:31:43)

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

pnpm test test/integration/app-config-asset-prefix/test/index.test.js

  • App assetPrefix config > should render correctly with assetPrefix: "/"
Expand output

● App assetPrefix config › should render correctly with assetPrefix: "/"

thrown: "Exceeded timeout of 60000 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."

  22 |   afterAll(() => killApp(app))
  23 |
> 24 |   it('should render correctly with assetPrefix: "/"', async () => {
     |   ^
  25 |     const browser = await webdriver(appPort, '/')
  26 |     try {
  27 |       await waitFor(2000)

  at it (integration/app-config-asset-prefix/test/index.test.js:24:3)
  at Object.describe (integration/app-config-asset-prefix/test/index.test.js:14:1)

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

TURBOPACK=1 pnpm test test/integration/app-dir-export/test/dynamicpage-dev.test.ts (turbopack)

  • app dir - with output export - dynamic page dev > development mode > should work in dev with dynamicPage undefined
  • app dir - with output export - dynamic page dev > development mode > should work in dev with dynamicPage 'error'
  • app dir - with output export - dynamic page dev > development mode > should work in dev with dynamicPage 'force-static'
  • app dir - with output export - dynamic page dev > development mode > should work in dev with dynamicPage 'force-dynamic'
Expand output

● app dir - with output export - dynamic page dev › development mode › should work in dev with dynamicPage undefined

thrown: "Exceeded timeout of 60000 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."

  14 |             'Page with `dynamic = "force-dynamic"` couldn\'t be exported. `output: "export"` requires all pages be renderable statically',
  15 |         },
> 16 |       ])(
     |        ^
  17 |         'should work in dev with dynamicPage $dynamicPage',
  18 |         async ({ dynamicPage, expectedErrMsg }) => {
  19 |           await runTests({ isDev: true, dynamicPage, expectedErrMsg })

  at ../node_modules/.pnpm/[email protected]/node_modules/jest-each/build/bind.js:47:15
      at Array.forEach (<anonymous>)
  at integration/app-dir-export/test/dynamicpage-dev.test.ts:16:8
  at integration/app-dir-export/test/dynamicpage-dev.test.ts:4:58
  at Object.describe (integration/app-dir-export/test/dynamicpage-dev.test.ts:3:1)

● app dir - with output export - dynamic page dev › development mode › should work in dev with dynamicPage 'error'

Failed to replace content.

Pattern: const dynamic = 'force-static'

Content: import Link from 'next/link'

export const dynamic = undefined

export function generateStaticParams() {
  return [{ slug: 'first' }, { slug: 'second' }]
}

export default function Page({ params }) {
  return (
    <main>
      <h1>{params.slug}</h1>
      <ul>
        <li>
          <Link href="/another">Visit another page</Link>
        </li>
      </ul>
    </main>
  )
}

  751 |     } else if (typeof pattern === 'string') {
  752 |       if (!currentContent.includes(pattern)) {
> 753 |         throw new Error(
      |               ^
  754 |           `Failed to replace content.\n\nPattern: ${pattern}\n\nContent: ${currentContent}`
  755 |         )
  756 |       }

  at File.replace (lib/next-test-utils.ts:753:15)
  at replace (integration/app-dir-export/test/utils.ts:129:14)
  at integration/app-dir-export/test/dynamicpage-dev.test.ts:19:25

● app dir - with output export - dynamic page dev › development mode › should work in dev with dynamicPage 'force-static'

Failed to replace content.

Pattern: const dynamic = 'force-static'

Content: import Link from 'next/link'

export const dynamic = undefined

export function generateStaticParams() {
  return [{ slug: 'first' }, { slug: 'second' }]
}

export default function Page({ params }) {
  return (
    <main>
      <h1>{params.slug}</h1>
      <ul>
        <li>
          <Link href="/another">Visit another page</Link>
        </li>
      </ul>
    </main>
  )
}

  751 |     } else if (typeof pattern === 'string') {
  752 |       if (!currentContent.includes(pattern)) {
> 753 |         throw new Error(
      |               ^
  754 |           `Failed to replace content.\n\nPattern: ${pattern}\n\nContent: ${currentContent}`
  755 |         )
  756 |       }

  at File.replace (lib/next-test-utils.ts:753:15)
  at replace (integration/app-dir-export/test/utils.ts:129:14)
  at integration/app-dir-export/test/dynamicpage-dev.test.ts:19:25

● app dir - with output export - dynamic page dev › development mode › should work in dev with dynamicPage 'force-dynamic'

Failed to replace content.

Pattern: const dynamic = 'force-static'

Content: import Link from 'next/link'

export const dynamic = undefined

export function generateStaticParams() {
  return [{ slug: 'first' }, { slug: 'second' }]
}

export default function Page({ params }) {
  return (
    <main>
      <h1>{params.slug}</h1>
      <ul>
        <li>
          <Link href="/another">Visit another page</Link>
        </li>
      </ul>
    </main>
  )
}

  751 |     } else if (typeof pattern === 'string') {
  752 |       if (!currentContent.includes(pattern)) {
> 753 |         throw new Error(
      |               ^
  754 |           `Failed to replace content.\n\nPattern: ${pattern}\n\nContent: ${currentContent}`
  755 |         )
  756 |       }

  at File.replace (lib/next-test-utils.ts:753:15)
  at replace (integration/app-dir-export/test/utils.ts:129:14)
  at integration/app-dir-export/test/dynamicpage-dev.test.ts:19:25

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

pnpm test test/integration/app-dir-export/test/trailing-slash-dev.test.ts

  • app dir - with output export - trailing slash dev > development mode > should work in dev with trailingSlash 'false'
  • app dir - with output export - trailing slash dev > development mode > should work in dev with trailingSlash 'true'
Expand output

● app dir - with output export - trailing slash dev › development mode › should work in dev with trailingSlash 'false'

thrown: "Exceeded timeout of 60000 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."

   5 |     'development mode',
   6 |     () => {
>  7 |       it.each([{ trailingSlash: false }, { trailingSlash: true }])(
     |                                                                  ^
   8 |         "should work in dev with trailingSlash '$trailingSlash'",
   9 |         async ({ trailingSlash }) => {
  10 |           await runTests({ isDev: true, trailingSlash })

  at ../node_modules/.pnpm/[email protected]/node_modules/jest-each/build/bind.js:47:15
      at Array.forEach (<anonymous>)
  at integration/app-dir-export/test/trailing-slash-dev.test.ts:7:66
  at integration/app-dir-export/test/trailing-slash-dev.test.ts:4:58
  at Object.describe (integration/app-dir-export/test/trailing-slash-dev.test.ts:3:1)

● app dir - with output export - trailing slash dev › development mode › should work in dev with trailingSlash 'true'

Failed to replace content.

Pattern: trailingSlash: true,

Content: /** @type {import('next').NextConfig} */
const nextConfig = {
  output: 'export',
  // distDir: '.next-custom',
  trailingSlash: false,
  generateBuildId() {
    return 'test-build-id'
  },
}

module.exports = nextConfig

  751 |     } else if (typeof pattern === 'string') {
  752 |       if (!currentContent.includes(pattern)) {
> 753 |         throw new Error(
      |               ^
  754 |           `Failed to replace content.\n\nPattern: ${pattern}\n\nContent: ${currentContent}`
  755 |         )
  756 |       }

  at File.replace (lib/next-test-utils.ts:753:15)
  at replace (integration/app-dir-export/test/utils.ts:123:16)
  at integration/app-dir-export/test/trailing-slash-dev.test.ts:10:25

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

TURBOPACK=1 pnpm test-dev test/development/acceptance-app/rsc-runtime-errors.test.ts (turbopack)

  • Error overlay - RSC runtime errors > should show runtime errors if invalid client API from node_modules is executed
  • Error overlay - RSC runtime errors > should show runtime errors if invalid server API from node_modules is executed
  • Error overlay - RSC runtime errors > should show source code for jsx errors from server component
  • Error overlay - RSC runtime errors > should show the userland code error trace when fetch failed error occurred
  • Error overlay - RSC runtime errors > should contain nextjs version check in error overlay
  • Error overlay - RSC runtime errors > should not show the bundle layer info in the file trace
Expand output

● Error overlay - RSC runtime errors › should show runtime errors if invalid client API from node_modules is executed

Expected Redbox but found none

  28 |     const browser = await next.browser('/server')
  29 |
> 30 |     await assertHasRedbox(browser)
     |     ^
  31 |     const errorDescription = await getRedboxDescription(browser)
  32 |
  33 |     expect(errorDescription).toContain(

  at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:30:5)

● Error overlay - RSC runtime errors › should show runtime errors if invalid server API from node_modules is executed

Expected Redbox but found none

  51 |     const browser = await next.browser('/client')
  52 |
> 53 |     await assertHasRedbox(browser)
     |     ^
  54 |
  55 |     const errorDescription = await getRedboxDescription(browser)
  56 |     expect(errorDescription).toContain(

  at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:53:5)

● Error overlay - RSC runtime errors › should show source code for jsx errors from server component

Expected Redbox but found none

  70 |
  71 |     const browser = await next.browser('/server')
> 72 |     await assertHasRedbox(browser)
     |     ^
  73 |
  74 |     const errorDescription = await getRedboxDescription(browser)
  75 |

  at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:72:5)

● Error overlay - RSC runtime errors › should show the userland code error trace when fetch failed error occurred

Expected Redbox but found none

  88 |     )
  89 |     const browser = await next.browser('/server')
> 90 |     await assertHasRedbox(browser)
     |     ^
  91 |
  92 |     const source = await getRedboxSource(browser)
  93 |     // Can show the original source code

  at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:90:5)

● Error overlay - RSC runtime errors › should contain nextjs version check in error overlay

Expected Redbox but found none

  107 |     const browser = await next.browser('/server')
  108 |
> 109 |     await assertHasRedbox(browser)
      |     ^
  110 |     const versionText = await getVersionCheckerText(browser)
  111 |     expect(versionText).toMatch(/Next.js \([\w.-]+\)/)
  112 |   })

  at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:109:5)

● Error overlay - RSC runtime errors › should not show the bundle layer info in the file trace

Expected Redbox but found none

  123 |     const browser = await next.browser('/server')
  124 |
> 125 |     await assertHasRedbox(browser)
      |     ^
  126 |     const source = await getRedboxSource(browser)
  127 |     expect(source).toContain('app/server/page.js')
  128 |     expect(source).not.toContain('//app/server/page.js')

  at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:125:5)

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

TURBOPACK=1 pnpm test test/integration/link-ref-app/test/index.test.js (turbopack)

  • Invalid hrefs > development mode > should not have a race condition with a click handler
Expand output

● Invalid hrefs › development mode › should not have a race condition with a click handler

thrown: "Exceeded timeout of 60000 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."

  61 | function runCommonTests() {
  62 |   // See https:/vercel/next.js/issues/18437
> 63 |   it('should not have a race condition with a click handler', async () => {
     |   ^
  64 |     const browser = await webdriver(appPort, '/click-away-race-condition')
  65 |     await browser.elementByCss('#click-me').click()
  66 |     await browser.waitForElementByCss('#the-menu')

  at it (integration/link-ref-app/test/index.test.js:63:3)
  at runCommonTests (integration/link-ref-app/test/index.test.js:80:7)
  at integration/link-ref-app/test/index.test.js:71:58
  at Object.describe (integration/link-ref-app/test/index.test.js:70:1)

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

pnpm test test/integration/next-image-new/app-dir-localpatterns/test/index.test.ts

  • Image localPatterns config > development mode > should load matching images
  • Image localPatterns config > development mode > should block unmatched image does-not-exist
  • Image localPatterns config > development mode > should block unmatched image nested-assets-query
  • Image localPatterns config > development mode > should block unmatched image nested-blocked
  • Image localPatterns config > development mode > should block unmatched image top-level
Expand output

● Image localPatterns config › development mode › should load matching images

thrown: "Exceeded timeout of 60000 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."

  32 |
  33 | function runTests(mode: 'dev' | 'server') {
> 34 |   it('should load matching images', async () => {
     |   ^
  35 |     const browser = await webdriver(appPort, '/')
  36 |     if (mode === 'dev') {
  37 |       await assertNoRedbox(browser)

  at it (integration/next-image-new/app-dir-localpatterns/test/index.test.ts:34:3)
  at runTests (integration/next-image-new/app-dir-localpatterns/test/index.test.ts:81:7)
  at integration/next-image-new/app-dir-localpatterns/test/index.test.ts:70:58
  at Object.describe (integration/next-image-new/app-dir-localpatterns/test/index.test.ts:69:1)

● Image localPatterns config › development mode › should block unmatched image does-not-exist

Expected Redbox but found none

  55 |     const browser = await webdriver(appPort, page)
  56 |     if (mode === 'dev') {
> 57 |       await assertHasRedbox(browser)
     |       ^
  58 |       expect(await getRedboxHeader(browser)).toMatch(
  59 |         /Invalid src prop (.+) on `next\/image` does not match `images.localPatterns` configured/g
  60 |       )

  at integration/next-image-new/app-dir-localpatterns/test/index.test.ts:57:7

● Image localPatterns config › development mode › should block unmatched image nested-assets-query

Expected Redbox but found none

  55 |     const browser = await webdriver(appPort, page)
  56 |     if (mode === 'dev') {
> 57 |       await assertHasRedbox(browser)
     |       ^
  58 |       expect(await getRedboxHeader(browser)).toMatch(
  59 |         /Invalid src prop (.+) on `next\/image` does not match `images.localPatterns` configured/g
  60 |       )

  at integration/next-image-new/app-dir-localpatterns/test/index.test.ts:57:7

● Image localPatterns config › development mode › should block unmatched image nested-blocked

Expected Redbox but found none

  55 |     const browser = await webdriver(appPort, page)
  56 |     if (mode === 'dev') {
> 57 |       await assertHasRedbox(browser)
     |       ^
  58 |       expect(await getRedboxHeader(browser)).toMatch(
  59 |         /Invalid src prop (.+) on `next\/image` does not match `images.localPatterns` configured/g
  60 |       )

  at integration/next-image-new/app-dir-localpatterns/test/index.test.ts:57:7

● Image localPatterns config › development mode › should block unmatched image top-level

Expected Redbox but found none

  55 |     const browser = await webdriver(appPort, page)
  56 |     if (mode === 'dev') {
> 57 |       await assertHasRedbox(browser)
     |       ^
  58 |       expect(await getRedboxHeader(browser)).toMatch(
  59 |         /Invalid src prop (.+) on `next\/image` does not match `images.localPatterns` configured/g
  60 |       )

  at integration/next-image-new/app-dir-localpatterns/test/index.test.ts:57:7

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

TURBOPACK=1 pnpm test-start test/production/allow-development-build/allow-development-build.test.ts (turbopack)

  • allow-development-build > with NODE_ENV set to development > should warn about a non-standard NODE_ENV
  • allow-development-build > with NODE_ENV set to development > should show React development errors in app-page
  • allow-development-build > with NODE_ENV set to development > should show React development errors in pages-page
Expand output

● allow-development-build › with NODE_ENV set to development › should warn about a non-standard NODE_ENV

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)

● allow-development-build › with NODE_ENV set to development › should show React development errors in app-page

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)

● allow-development-build › with NODE_ENV set to development › should show React development errors in pages-page

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.

TURBOPACK=1 pnpm test test/integration/create-next-app/templates/matrix.test.ts (turbopack)

  • CNA options matrix - app > --app --turbo --js --import-alias=@acme/* --eslint --src-dir --tailwind
  • CNA options matrix - app > --app --turbo --js --import-alias=@acme/* --eslint --src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --js --import-alias=@acme/* --eslint --no-src-dir --tailwind
  • CNA options matrix - app > --app --turbo --js --import-alias=@acme/* --eslint --no-src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --js --import-alias=@/* --eslint --src-dir --tailwind
  • CNA options matrix - app > --app --turbo --js --import-alias=@/* --eslint --src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --js --import-alias=@/* --eslint --no-src-dir --tailwind
  • CNA options matrix - app > --app --turbo --js --import-alias=@/* --eslint --no-src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --js --no-import-alias --eslint --src-dir --tailwind
  • CNA options matrix - app > --app --turbo --js --no-import-alias --eslint --src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --js --no-import-alias --eslint --no-src-dir --tailwind
  • CNA options matrix - app > --app --turbo --js --no-import-alias --eslint --no-src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --ts --import-alias=@acme/* --eslint --src-dir --tailwind
  • CNA options matrix - app > --app --turbo --ts --import-alias=@acme/* --eslint --src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --ts --import-alias=@acme/* --eslint --no-src-dir --tailwind
  • CNA options matrix - app > --app --turbo --ts --import-alias=@acme/* --eslint --no-src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --ts --import-alias=@/* --eslint --src-dir --tailwind
  • CNA options matrix - app > --app --turbo --ts --import-alias=@/* --eslint --src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --ts --import-alias=@/* --eslint --no-src-dir --tailwind
  • CNA options matrix - app > --app --turbo --ts --import-alias=@/* --eslint --no-src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --ts --no-import-alias --eslint --src-dir --tailwind
  • CNA options matrix - app > --app --turbo --ts --no-import-alias --eslint --src-dir --no-tailwind
  • CNA options matrix - app > --app --turbo --ts --no-import-alias --eslint --no-src-dir --tailwind
  • CNA options matrix - app > --app --turbo --ts --no-import-alias --eslint --no-src-dir --no-tailwind
Expand output

● CNA options matrix - app › --app --turbo --js --import-alias=@acme/* --eslint --src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --import-alias=@acme/* --eslint --src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --import-alias=@acme/* --eslint --no-src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --import-alias=@acme/* --eslint --no-src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --import-alias=@/* --eslint --src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --import-alias=@/* --eslint --src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --import-alias=@/* --eslint --no-src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --import-alias=@/* --eslint --no-src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --no-import-alias --eslint --src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --no-import-alias --eslint --src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --no-import-alias --eslint --no-src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --js --no-import-alias --eslint --no-src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --import-alias=@acme/* --eslint --src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --import-alias=@acme/* --eslint --src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --import-alias=@acme/* --eslint --no-src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --import-alias=@acme/* --eslint --no-src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --import-alias=@/* --eslint --src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --import-alias=@/* --eslint --src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --import-alias=@/* --eslint --no-src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --import-alias=@/* --eslint --no-src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --no-import-alias --eslint --src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --no-import-alias --eslint --src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --no-import-alias --eslint --no-src-dir --tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

● CNA options matrix - app › --app --turbo --ts --no-import-alias --eslint --no-src-dir --no-tailwind

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

Expected: 200
Received: 500

  67 |       expect(await res.text()).toContain('Get started by editing')
  68 |     }
> 69 |     expect(res.status).toBe(200)
     |                        ^
  70 |
  71 |     if (!isApp && !isEmpty) {
  72 |       const apiRes = await fetchViaHTTP(port, '/api/hello')

  at toBe (integration/create-next-app/utils.ts:69:24)
  at integration/create-next-app/templates/matrix.test.ts:71:9
  at useTempDir (lib/use-temp-dir.ts:24:5)
  at integration/create-next-app/templates/matrix.test.ts:60:7

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

@ijjk
Copy link
Member

ijjk commented Oct 2, 2024

Stats from current PR

Default Build (Increase detected ⚠️)
General Overall increase ⚠️
vercel/next.js canary vercel/next.js update/react/459fd418-20241001 Change
buildDuration 18.7s 16.9s N/A
buildDurationCached 16.1s 13.9s N/A
nodeModulesSize 369 MB 369 MB ⚠️ +186 kB
nextStartRea..uration (ms) 443ms 444ms N/A
Client Bundles (main, webpack)
vercel/next.js canary vercel/next.js update/react/459fd418-20241001 Change
38c1587e-HASH.js gzip 52.8 kB 52.7 kB N/A
4462.HASH.js gzip 169 B 169 B
5877-HASH.js gzip 41.9 kB 42 kB N/A
8403-HASH.js gzip 5.27 kB 5.27 kB N/A
framework-HASH.js gzip 57.5 kB 57.5 kB
main-app-HASH.js gzip 226 B 229 B N/A
main-HASH.js gzip 32.7 kB 32.7 kB N/A
webpack-HASH.js gzip 1.71 kB 1.71 kB N/A
Overall change 57.6 kB 57.6 kB
Legacy Client Bundles (polyfills)
vercel/next.js canary vercel/next.js update/react/459fd418-20241001 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 update/react/459fd418-20241001 Change
_app-HASH.js gzip 194 B 192 B N/A
_error-HASH.js gzip 193 B 192 B N/A
amp-HASH.js gzip 511 B 512 B N/A
css-HASH.js gzip 342 B 341 B N/A
dynamic-HASH.js gzip 1.84 kB 1.84 kB N/A
edge-ssr-HASH.js gzip 265 B 265 B
head-HASH.js gzip 362 B 363 B N/A
hooks-HASH.js gzip 392 B 391 B N/A
image-HASH.js gzip 4.41 kB 4.41 kB N/A
index-HASH.js gzip 268 B 268 B
link-HASH.js gzip 2.78 kB 2.78 kB N/A
routerDirect..HASH.js gzip 329 B 324 B N/A
script-HASH.js gzip 395 B 394 B N/A
withRouter-HASH.js gzip 324 B 322 B N/A
1afbb74e6ecf..834.css gzip 106 B 106 B
Overall change 639 B 639 B
Client Build Manifests
vercel/next.js canary vercel/next.js update/react/459fd418-20241001 Change
_buildManifest.js gzip 745 B 749 B N/A
Overall change 0 B 0 B
Rendered Page Sizes
vercel/next.js canary vercel/next.js update/react/459fd418-20241001 Change
index.html gzip 523 B 523 B
link.html gzip 537 B 536 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 update/react/459fd418-20241001 Change
edge-ssr.js gzip 129 kB 129 kB N/A
page.js gzip 184 kB 184 kB N/A
Overall change 0 B 0 B
Middleware size
vercel/next.js canary vercel/next.js update/react/459fd418-20241001 Change
middleware-b..fest.js gzip 664 B 668 B N/A
middleware-r..fest.js gzip 155 B 156 B N/A
middleware.js gzip 30 kB 30 kB N/A
edge-runtime..pack.js gzip 844 B 844 B
Overall change 844 B 844 B
Next Runtimes Overall increase ⚠️
vercel/next.js canary vercel/next.js update/react/459fd418-20241001 Change
973-experime...dev.js gzip 322 B 322 B
973.runtime.dev.js gzip 314 B 314 B
app-page-exp...dev.js gzip 309 kB 310 kB ⚠️ +1.48 kB
app-page-exp..prod.js gzip 118 kB 118 kB ⚠️ +104 B
app-page-tur..prod.js gzip 132 kB 132 kB ⚠️ +117 B
app-page-tur..prod.js gzip 127 kB 127 kB N/A
app-page.run...dev.js gzip 299 kB 301 kB ⚠️ +1.52 kB
app-page.run..prod.js gzip 114 kB 114 kB N/A
app-route-ex...dev.js gzip 33.8 kB 33.8 kB
app-route-ex..prod.js gzip 22.7 kB 22.7 kB
app-route-tu..prod.js gzip 22.7 kB 22.7 kB
app-route-tu..prod.js gzip 22.4 kB 22.4 kB
app-route.ru...dev.js gzip 35.5 kB 35.5 kB N/A
app-route.ru..prod.js gzip 22.4 kB 22.4 kB
pages-api-tu..prod.js gzip 9.62 kB 9.62 kB
pages-api.ru...dev.js gzip 11.5 kB 11.5 kB
pages-api.ru..prod.js gzip 9.61 kB 9.61 kB
pages-turbo...prod.js gzip 20.9 kB 20.9 kB
pages.runtim...dev.js gzip 26.5 kB 26.5 kB
pages.runtim..prod.js gzip 20.9 kB 20.9 kB
server.runti..prod.js gzip 57.5 kB 57.5 kB
Overall change 1.14 MB 1.14 MB ⚠️ +3.22 kB
build cache Overall increase ⚠️
vercel/next.js canary vercel/next.js update/react/459fd418-20241001 Change
0.pack gzip 1.81 MB 1.81 MB ⚠️ +1.88 kB
index.pack gzip 140 kB 139 kB N/A
Overall change 1.81 MB 1.81 MB ⚠️ +1.88 kB
Diff details
Diff for page.js
@@ -15,7 +15,7 @@
       /***/
     },
 
-    /***/ 5716: /***/ (
+    /***/ 7180: /***/ (
       __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-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/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-statsEkBkVj%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-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/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-statsEkBkVj%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, {
@@ -78,35 +78,35 @@
         tree: () => tree,
       });
 
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/web/globals.js
-      var globals = __webpack_require__(9846);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/web/adapter.js + 3 modules
-      var adapter = __webpack_require__(4248);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/build/webpack/loaders/next-edge-ssr-loader/render.js + 89 modules
-      var render = __webpack_require__(6891);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/lib/incremental-cache/index.js + 3 modules
-      var incremental_cache = __webpack_require__(6189);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/app-render/app-render.js + 61 modules
-      var app_render = __webpack_require__(2394);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js
-      var module_compiled = __webpack_require__(3483);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/route-kind.js
-      var route_kind = __webpack_require__(6758);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/client/components/error-boundary.js
-      var error_boundary = __webpack_require__(9227);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/app-render/entry-base.js + 29 modules
-      var entry_base = __webpack_require__(4268); // CONCATENATED MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/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-statsEkBkVj%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-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/web/globals.js
+      var globals = __webpack_require__(1586);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/web/adapter.js + 3 modules
+      var adapter = __webpack_require__(1850);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/build/webpack/loaders/next-edge-ssr-loader/render.js + 89 modules
+      var render = __webpack_require__(5900);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/lib/incremental-cache/index.js + 3 modules
+      var incremental_cache = __webpack_require__(273);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/app-render/app-render.js + 61 modules
+      var app_render = __webpack_require__(5635);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js
+      var module_compiled = __webpack_require__(587);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/route-kind.js
+      var route_kind = __webpack_require__(7549);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/client/components/error-boundary.js
+      var error_boundary = __webpack_require__(3211);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/app-render/entry-base.js + 29 modules
+      var entry_base = __webpack_require__(1629); // CONCATENATED MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/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-statsEkBkVj%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__, 1196)
+          __webpack_require__.bind(__webpack_require__, 8824)
         );
       const module1 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 6428)
+          __webpack_require__.bind(__webpack_require__, 670)
         );
       const page2 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 4125)
+          __webpack_require__.bind(__webpack_require__, 4310)
         );
 
       // We inject the tree and pages here so that we can use them in the route
@@ -169,12 +169,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-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/lib/page-types.js
-      var page_types = __webpack_require__(2893);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/app-render/encryption-utils.js
-      var encryption_utils = __webpack_require__(9017);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/dist/esm/server/app-render/action-utils.js
-      var action_utils = __webpack_require__(8494); // CONCATENATED MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/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":"eyJlbnYiOnt9LCJlc2xpbnQiOnsiaWdub3JlRHVyaW5nQnVpbGRzIjpmYWxzZX0sInR5cGVzY3JpcHQiOnsiaWdub3JlQnVpbGRFcnJvcnMiOmZhbHNlLCJ0c2NvbmZpZ1BhdGgiOiJ0c2NvbmZpZy5qc29uIn0sImRpc3REaXIiOiIubmV4dCIsImNsZWFuRGlzdERpciI6dHJ1ZSwiYXNzZXRQcmVmaXgiOiIiLCJjYWNoZU1heE1lbW9yeVNpemUiOjUyNDI4ODAwLCJjb25maWdPcmlnaW4iOiJuZXh0LmNvbmZpZy5qcyIsInVzZUZpbGVTeXN0ZW1QdWJsaWNSb3V0ZXMiOnRydWUsImdlbmVyYXRlRXRhZ3MiOnRydWUsInBhZ2VFeHRlbnNpb25zIjpbInRzeCIsInRzIiwianN4IiwianMiXSwicG93ZXJlZEJ5SGVhZGVyIjp0cnVlLCJjb21wcmVzcyI6dHJ1ZSwiaW1hZ2VzIjp7ImRldmljZVNpemVzIjpbNjQwLDc1MCw4MjgsMTA4MCwxMjAwLDE5MjAsMjA0OCwzODQwXSwiaW1hZ2VTaXplcyI6WzE2LDMyLDQ4LDY0LDk2LDEyOCwyNTYsMzg0XSwicGF0aCI6Ii9fbmV4dC9pbWFnZSIsImxvYWRlciI6ImRlZmF1bHQiLCJsb2FkZXJGaWxlIjoiIiwiZG9tYWlucyI6W10sImRpc2FibGVTdGF0aWNJbWFnZXMiOmZhbHNlLCJtaW5pbXVtQ2FjaGVUVEwiOjYwLCJmb3JtYXRzIjpbImltYWdlL3dlYnAiXSwiZGFuZ2Vyb3VzbHlBbGxvd1NWRyI6ZmFsc2UsImNvbnRlbnRTZWN1cml0eVBvbGljeSI6InNjcmlwdC1zcmMgJ25vbmUnOyBmcmFtZS1zcmMgJ25vbmUnOyBzYW5kYm94OyIsImNvbnRlbnREaXNwb3NpdGlvblR5cGUiOiJhdHRhY2htZW50IiwicmVtb3RlUGF0dGVybnMiOltdLCJ1bm9wdGltaXplZCI6ZmFsc2V9LCJkZXZJbmRpY2F0b3JzIjp7ImFwcElzclN0YXR1cyI6dHJ1ZSwiYnVpbGRBY3Rpdml0eSI6dHJ1ZSwiYnVpbGRBY3Rpdml0eVBvc2l0aW9uIjoiYm90dG9tLXJpZ2h0In0sIm9uRGVtYW5kRW50cmllcyI6eyJtYXhJbmFjdGl2ZUFnZSI6NjAwMDAsInBhZ2VzQnVmZmVyTGVuZ3RoIjo1fSwiYW1wIjp7ImNhbm9uaWNhbEJhc2UiOiIifSwiYmFzZVBhdGgiOiIiLCJzYXNzT3B0aW9ucyI6e30sInRyYWlsaW5nU2xhc2giOmZhbHNlLCJpMThuIjpudWxsLCJwcm9kdWN0aW9uQnJvd3NlclNvdXJjZU1hcHMiOmZhbHNlLCJleGNsdWRlRGVmYXVsdE1vbWVudExvY2FsZXMiOnRydWUsInNlcnZlclJ1bnRpbWVDb25maWciOnt9LCJwdWJsaWNSdW50aW1lQ29uZmlnIjp7fSwicmVhY3RQcm9kdWN0aW9uUHJvZmlsaW5nIjpmYWxzZSwicmVhY3RTdHJpY3RNb2RlIjpudWxsLCJyZWFjdE1heEhlYWRlcnNMZW5ndGgiOjYwMDAsImh0dHBBZ2VudE9wdGlvbnMiOnsia2VlcEFsaXZlIjp0cnVlfSwibG9nZ2luZyI6e30sInN3ckRlbHRhIjozMTUzNjAwMCwic3RhdGljUGFnZUdlbmVyYXRpb25UaW1lb3V0Ijo2MCwibW9kdWxhcml6ZUltcG9ydHMiOnsiQG11aS9pY29ucy1tYXRlcmlhbCI6eyJ0cmFuc2Zvcm0iOiJAbXVpL2ljb25zLW1hdGVyaWFsL3t7bWVtYmVyfX0ifSwibG9kYXNoIjp7InRyYW5zZm9ybSI6ImxvZGFzaC97e21lbWJlcn19In19LCJvdXRwdXRGaWxlVHJhY2luZ1Jvb3QiOiIvdG1wL25leHQtc3RhdHNFa0JrVmovc3RhdHMtYXBwIiwiZXhwZXJpbWVudGFsIjp7Im11bHRpWm9uZURyYWZ0TW9kZSI6ZmFsc2UsImFwcE5hdkZhaWxIYW5kbGluZyI6ZmFsc2UsInByZXJlbmRlckVhcmx5RXhpdCI6dHJ1ZSwic2VydmVyTWluaWZpY2F0aW9uIjp0cnVlLCJzZXJ2ZXJTb3VyY2VNYXBzIjpmYWxzZSwibGlua05vVG91Y2hTdGFydCI6ZmFsc2UsImNhc2VTZW5zaXRpdmVSb3V0ZXMiOmZhbHNlLCJwcmVsb2FkRW50cmllc09uU3RhcnQiOnRydWUsImNsaWVudFJvdXRlckZpbHRlciI6dHJ1ZSwiY2xpZW50Um91dGVyRmlsdGVyUmVkaXJlY3RzIjpmYWxzZSwiZmV0Y2hDYWNoZUtleVByZWZpeCI6IiIsIm1pZGRsZXdhcmVQcmVmZXRjaCI6ImZsZXhpYmxlIiwib3B0aW1pc3RpY0NsaWVudENhY2hlIjp0cnVlLCJtYW51YWxDbGllbnRCYXNlUGF0aCI6ZmFsc2UsImNwdXMiOjE5LCJtZW1vcnlCYXNlZFdvcmtlcnNDb3VudCI6ZmFsc2UsImlzckZsdXNoVG9EaXNrIjp0cnVlLCJ3b3JrZXJUaHJlYWRzIjpmYWxzZSwib3B0aW1pemVDc3MiOmZhbHNlLCJuZXh0U2NyaXB0V29ya2VycyI6ZmFsc2UsInNjcm9sbFJlc3RvcmF0aW9uIjpmYWxzZSwiZXh0ZXJuYWxEaXIiOmZhbHNlLCJkaXNhYmxlT3B0aW1pemVkTG9hZGluZyI6ZmFsc2UsImd6aXBTaXplIjp0cnVlLCJjcmFDb21wYXQiOmZhbHNlLCJlc21FeHRlcm5hbHMiOnRydWUsImZ1bGx5U3BlY2lmaWVkIjpmYWxzZSwic3djVHJhY2VQcm9maWxpbmciOmZhbHNlLCJmb3JjZVN3Y1RyYW5zZm9ybXMiOmZhbHNlLCJsYXJnZVBhZ2VEYXRhQnl0ZXMiOjEyODAwMCwidHVyYm8iOnsicm9vdCI6Ii90bXAvbmV4dC1zdGF0c0VrQmtWai9zdGF0cy1hcHAifSwidHlwZWRSb3V0ZXMiOmZhbHNlLCJ0eXBlZEVudiI6ZmFsc2UsInBhcmFsbGVsU2VydmVyQ29tcGlsZXMiOmZhbHNlLCJwYXJhbGxlbFNlcnZlckJ1aWxkVHJhY2VzIjpmYWxzZSwicHByIjpmYWxzZSwicHByRmFsbGJhY2tzIjpmYWxzZSwid2VicGFja01lbW9yeU9wdGltaXphdGlvbnMiOmZhbHNlLCJvcHRpbWl6ZVNlcnZlclJlYWN0Ijp0cnVlLCJ1c2VFYXJseUltcG9ydCI6ZmFsc2UsInN0YWxlVGltZXMiOnsiZHluYW1pYyI6MCwic3RhdGljIjozMDB9LCJhZnRlciI6ZmFsc2UsInNlcnZlckNvbXBvbmVudHNIbXJDYWNoZSI6dHJ1ZSwic3RhdGljR2VuZXJhdGlvbk1heENvbmN1cnJlbmN5Ijo4LCJzdGF0aWNHZW5lcmF0aW9uTWluUGFnZXNQZXJXb3JrZXIiOjI1LCJkeW5hbWljSU8iOmZhbHNlLCJvcHRpbWl6ZVBhY2thZ2VJbXBvcnRzIjpbImx1Y2lkZS1yZWFjdCIsImRhdGUtZm5zIiwibG9kYXNoLWVzIiwicmFtZGEiLCJhbnRkIiwicmVhY3QtYm9vdHN0cmFwIiwiYWhvb2tzIiwiQGFudC1kZXNpZ24vaWNvbnMiLCJAaGVhZGxlc3N1aS9yZWFjdCIsIkBoZWFkbGVzc3VpLWZsb2F0L3JlYWN0IiwiQGhlcm9pY29ucy9yZWFjdC8yMC9zb2xpZCIsIkBoZXJvaWNvbnMvcmVhY3QvMjQvc29saWQiLCJAaGVyb2ljb25zL3JlYWN0LzI0L291dGxpbmUiLCJAdmlzeC92aXN4IiwiQHRyZW1vci9yZWFjdCIsInJ4anMiLCJAbXVpL21hdGVyaWFsIiwiQG11aS9pY29ucy1tYXRlcmlhbCIsInJlY2hhcnRzIiwicmVhY3QtdXNlIiwiZWZmZWN0IiwiQGVmZmVjdC9zY2hlbWEiLCJAZWZmZWN0L3BsYXRmb3JtIiwiQGVmZmVjdC9wbGF0Zm9ybS1ub2RlIiwiQGVmZmVjdC9wbGF0Zm9ybS1icm93c2VyIiwiQGVmZmVjdC9wbGF0Zm9ybS1idW4iLCJAZWZmZWN0L3NxbCIsIkBlZmZlY3Qvc3FsLW1zc3FsIiwiQGVmZmVjdC9zcWwtbXlzcWwyIiwiQGVmZmVjdC9zcWwtcGciLCJAZWZmZWN0L3NxbC1zcXVsaXRlLW5vZGUiLCJAZWZmZWN0L3NxbC1zcXVsaXRlLWJ1biIsIkBlZmZlY3Qvc3FsLXNxdWxpdGUtd2FzbSIsIkBlZmZlY3Qvc3FsLXNxdWxpdGUtcmVhY3QtbmF0aXZlIiwiQGVmZmVjdC9ycGMiLCJAZWZmZWN0L3JwYy1odHRwIiwiQGVmZmVjdC90eXBlY2xhc3MiLCJAZWZmZWN0L2V4cGVyaW1lbnRhbCIsIkBlZmZlY3Qvb3BlbnRlbGVtZXRyeSIsIkBtYXRlcmlhbC11aS9jb3JlIiwiQG1hdGVyaWFsLXVpL2ljb25zIiwiQHRhYmxlci9pY29ucy1yZWFjdCIsIm11aS1jb3JlIiwicmVhY3QtaWNvbnMvYWkiLCJyZWFjdC1pY29ucy9iaSIsInJlYWN0LWljb25zL2JzIiwicmVhY3QtaWNvbnMvY2ciLCJyZWFjdC1pY29ucy9jaSIsInJlYWN0LWljb25zL2RpIiwicmVhY3QtaWNvbnMvZmEiLCJyZWFjdC1pY29ucy9mYTYiLCJyZWFjdC1pY29ucy9mYyIsInJlYWN0LWljb25zL2ZpIiwicmVhY3QtaWNvbnMvZ2kiLCJyZWFjdC1pY29ucy9nbyIsInJlYWN0LWljb25zL2dyIiwicmVhY3QtaWNvbnMvaGkiLCJyZWFjdC1pY29ucy9oaTIiLCJyZWFjdC1pY29ucy9pbSIsInJlYWN0LWljb25zL2lvIiwicmVhY3QtaWNvbnMvaW81IiwicmVhY3QtaWNvbnMvbGlhIiwicmVhY3QtaWNvbnMvbGliIiwicmVhY3QtaWNvbnMvbHUiLCJyZWFjdC1pY29ucy9tZCIsInJlYWN0LWljb25zL3BpIiwicmVhY3QtaWNvbnMvcmkiLCJyZWFjdC1pY29ucy9yeCIsInJlYWN0LWljb25zL3NpIiwicmVhY3QtaWNvbnMvc2wiLCJyZWFjdC1pY29ucy90YiIsInJlYWN0LWljb25zL3RmaSIsInJlYWN0LWljb25zL3RpIiwicmVhY3QtaWNvbnMvdnNjIiwicmVhY3QtaWNvbnMvd2kiXX0sImJ1bmRsZVBhZ2VzUm91dGVyRGVwZW5kZW5jaWVzIjpmYWxzZSwiY29uZmlnRmlsZSI6Ii90bXAvbmV4dC1zdGF0c0VrQmtWai9zdGF0cy1hcHAvbmV4dC5jb25maWcuanMiLCJjb25maWdGaWxlTmFtZSI6Im5leHQuY29uZmlnLmpzIn0=","pagesType":"app","appDirLoader":"bmV4dC1hcHAtbG9hZGVyP25hbWU9YXBwJTJGYXBwLWVkZ2Utc3NyJTJGcGFnZSZwYWdlPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZVBhdGg9cHJpdmF0ZS1uZXh0LWFwcC1kaXIlMkZhcHAtZWRnZS1zc3IlMkZwYWdlLmpzJmFwcERpcj0lMkZ0bXAlMkZuZXh0LXN0YXRzRWtCa1ZqJTJGc3RhdHMtYXBwJTJGYXBwJmFwcFBhdGhzPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZUV4dGVuc2lvbnM9dHN4JnBhZ2VFeHRlbnNpb25zPXRzJnBhZ2VFeHRlbnNpb25zPWpzeCZwYWdlRXh0ZW5zaW9ucz1qcyZiYXNlUGF0aD0mYXNzZXRQcmVmaXg9Jm5leHRDb25maWdPdXRwdXQ9JmZseWluZ1NodXR0bGU9ZmFsc2UmcHJlZmVycmVkUmVnaW9uPSZtaWRkbGV3YXJlQ29uZmlnPWUzMCUzRCE=","sriEnabled":false,"middlewareConfig":"e30="}!
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/lib/page-types.js
+      var page_types = __webpack_require__(3883);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/app-render/encryption-utils.js
+      var encryption_utils = __webpack_require__(3814);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/dist/esm/server/app-render/action-utils.js
+      var action_utils = __webpack_require__(2412); // CONCATENATED MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/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":"eyJlbnYiOnt9LCJlc2xpbnQiOnsiaWdub3JlRHVyaW5nQnVpbGRzIjpmYWxzZX0sInR5cGVzY3JpcHQiOnsiaWdub3JlQnVpbGRFcnJvcnMiOmZhbHNlLCJ0c2NvbmZpZ1BhdGgiOiJ0c2NvbmZpZy5qc29uIn0sImRpc3REaXIiOiIubmV4dCIsImNsZWFuRGlzdERpciI6dHJ1ZSwiYXNzZXRQcmVmaXgiOiIiLCJjYWNoZU1heE1lbW9yeVNpemUiOjUyNDI4ODAwLCJjb25maWdPcmlnaW4iOiJuZXh0LmNvbmZpZy5qcyIsInVzZUZpbGVTeXN0ZW1QdWJsaWNSb3V0ZXMiOnRydWUsImdlbmVyYXRlRXRhZ3MiOnRydWUsInBhZ2VFeHRlbnNpb25zIjpbInRzeCIsInRzIiwianN4IiwianMiXSwicG93ZXJlZEJ5SGVhZGVyIjp0cnVlLCJjb21wcmVzcyI6dHJ1ZSwiaW1hZ2VzIjp7ImRldmljZVNpemVzIjpbNjQwLDc1MCw4MjgsMTA4MCwxMjAwLDE5MjAsMjA0OCwzODQwXSwiaW1hZ2VTaXplcyI6WzE2LDMyLDQ4LDY0LDk2LDEyOCwyNTYsMzg0XSwicGF0aCI6Ii9fbmV4dC9pbWFnZSIsImxvYWRlciI6ImRlZmF1bHQiLCJsb2FkZXJGaWxlIjoiIiwiZG9tYWlucyI6W10sImRpc2FibGVTdGF0aWNJbWFnZXMiOmZhbHNlLCJtaW5pbXVtQ2FjaGVUVEwiOjYwLCJmb3JtYXRzIjpbImltYWdlL3dlYnAiXSwiZGFuZ2Vyb3VzbHlBbGxvd1NWRyI6ZmFsc2UsImNvbnRlbnRTZWN1cml0eVBvbGljeSI6InNjcmlwdC1zcmMgJ25vbmUnOyBmcmFtZS1zcmMgJ25vbmUnOyBzYW5kYm94OyIsImNvbnRlbnREaXNwb3NpdGlvblR5cGUiOiJhdHRhY2htZW50IiwicmVtb3RlUGF0dGVybnMiOltdLCJ1bm9wdGltaXplZCI6ZmFsc2V9LCJkZXZJbmRpY2F0b3JzIjp7ImFwcElzclN0YXR1cyI6dHJ1ZSwiYnVpbGRBY3Rpdml0eSI6dHJ1ZSwiYnVpbGRBY3Rpdml0eVBvc2l0aW9uIjoiYm90dG9tLXJpZ2h0In0sIm9uRGVtYW5kRW50cmllcyI6eyJtYXhJbmFjdGl2ZUFnZSI6NjAwMDAsInBhZ2VzQnVmZmVyTGVuZ3RoIjo1fSwiYW1wIjp7ImNhbm9uaWNhbEJhc2UiOiIifSwiYmFzZVBhdGgiOiIiLCJzYXNzT3B0aW9ucyI6e30sInRyYWlsaW5nU2xhc2giOmZhbHNlLCJpMThuIjpudWxsLCJwcm9kdWN0aW9uQnJvd3NlclNvdXJjZU1hcHMiOmZhbHNlLCJleGNsdWRlRGVmYXVsdE1vbWVudExvY2FsZXMiOnRydWUsInNlcnZlclJ1bnRpbWVDb25maWciOnt9LCJwdWJsaWNSdW50aW1lQ29uZmlnIjp7fSwicmVhY3RQcm9kdWN0aW9uUHJvZmlsaW5nIjpmYWxzZSwicmVhY3RTdHJpY3RNb2RlIjpudWxsLCJyZWFjdE1heEhlYWRlcnNMZW5ndGgiOjYwMDAsImh0dHBBZ2VudE9wdGlvbnMiOnsia2VlcEFsaXZlIjp0cnVlfSwibG9nZ2luZyI6e30sInN3ckRlbHRhIjozMTUzNjAwMCwic3RhdGljUGFnZUdlbmVyYXRpb25UaW1lb3V0Ijo2MCwibW9kdWxhcml6ZUltcG9ydHMiOnsiQG11aS9pY29ucy1tYXRlcmlhbCI6eyJ0cmFuc2Zvcm0iOiJAbXVpL2ljb25zLW1hdGVyaWFsL3t7bWVtYmVyfX0ifSwibG9kYXNoIjp7InRyYW5zZm9ybSI6ImxvZGFzaC97e21lbWJlcn19In19LCJvdXRwdXRGaWxlVHJhY2luZ1Jvb3QiOiIvdG1wL25leHQtc3RhdHNFa0JrVmovc3RhdHMtYXBwIiwiZXhwZXJpbWVudGFsIjp7Im11bHRpWm9uZURyYWZ0TW9kZSI6ZmFsc2UsImFwcE5hdkZhaWxIYW5kbGluZyI6ZmFsc2UsInByZXJlbmRlckVhcmx5RXhpdCI6dHJ1ZSwic2VydmVyTWluaWZpY2F0aW9uIjp0cnVlLCJzZXJ2ZXJTb3VyY2VNYXBzIjpmYWxzZSwibGlua05vVG91Y2hTdGFydCI6ZmFsc2UsImNhc2VTZW5zaXRpdmVSb3V0ZXMiOmZhbHNlLCJwcmVsb2FkRW50cmllc09uU3RhcnQiOnRydWUsImNsaWVudFJvdXRlckZpbHRlciI6dHJ1ZSwiY2xpZW50Um91dGVyRmlsdGVyUmVkaXJlY3RzIjpmYWxzZSwiZmV0Y2hDYWNoZUtleVByZWZpeCI6IiIsIm1pZGRsZXdhcmVQcmVmZXRjaCI6ImZsZXhpYmxlIiwib3B0aW1pc3RpY0NsaWVudENhY2hlIjp0cnVlLCJtYW51YWxDbGllbnRCYXNlUGF0aCI6ZmFsc2UsImNwdXMiOjE5LCJtZW1vcnlCYXNlZFdvcmtlcnNDb3VudCI6ZmFsc2UsImlzckZsdXNoVG9EaXNrIjp0cnVlLCJ3b3JrZXJUaHJlYWRzIjpmYWxzZSwib3B0aW1pemVDc3MiOmZhbHNlLCJuZXh0U2NyaXB0V29ya2VycyI6ZmFsc2UsInNjcm9sbFJlc3RvcmF0aW9uIjpmYWxzZSwiZXh0ZXJuYWxEaXIiOmZhbHNlLCJkaXNhYmxlT3B0aW1pemVkTG9hZGluZyI6ZmFsc2UsImd6aXBTaXplIjp0cnVlLCJjcmFDb21wYXQiOmZhbHNlLCJlc21FeHRlcm5hbHMiOnRydWUsImZ1bGx5U3BlY2lmaWVkIjpmYWxzZSwic3djVHJhY2VQcm9maWxpbmciOmZhbHNlLCJmb3JjZVN3Y1RyYW5zZm9ybXMiOmZhbHNlLCJsYXJnZVBhZ2VEYXRhQnl0ZXMiOjEyODAwMCwidHVyYm8iOnsicm9vdCI6Ii90bXAvbmV4dC1zdGF0c0VrQmtWai9zdGF0cy1hcHAifSwidHlwZWRSb3V0ZXMiOmZhbHNlLCJ0eXBlZEVudiI6ZmFsc2UsInBhcmFsbGVsU2VydmVyQ29tcGlsZXMiOmZhbHNlLCJwYXJhbGxlbFNlcnZlckJ1aWxkVHJhY2VzIjpmYWxzZSwicHByIjpmYWxzZSwicHByRmFsbGJhY2tzIjpmYWxzZSwid2VicGFja01lbW9yeU9wdGltaXphdGlvbnMiOmZhbHNlLCJvcHRpbWl6ZVNlcnZlclJlYWN0Ijp0cnVlLCJ1c2VFYXJseUltcG9ydCI6ZmFsc2UsInN0YWxlVGltZXMiOnsiZHluYW1pYyI6MCwic3RhdGljIjozMDB9LCJhZnRlciI6ZmFsc2UsInNlcnZlckNvbXBvbmVudHNIbXJDYWNoZSI6dHJ1ZSwic3RhdGljR2VuZXJhdGlvbk1heENvbmN1cnJlbmN5Ijo4LCJzdGF0aWNHZW5lcmF0aW9uTWluUGFnZXNQZXJXb3JrZXIiOjI1LCJkeW5hbWljSU8iOmZhbHNlLCJvcHRpbWl6ZVBhY2thZ2VJbXBvcnRzIjpbImx1Y2lkZS1yZWFjdCIsImRhdGUtZm5zIiwibG9kYXNoLWVzIiwicmFtZGEiLCJhbnRkIiwicmVhY3QtYm9vdHN0cmFwIiwiYWhvb2tzIiwiQGFudC1kZXNpZ24vaWNvbnMiLCJAaGVhZGxlc3N1aS9yZWFjdCIsIkBoZWFkbGVzc3VpLWZsb2F0L3JlYWN0IiwiQGhlcm9pY29ucy9yZWFjdC8yMC9zb2xpZCIsIkBoZXJvaWNvbnMvcmVhY3QvMjQvc29saWQiLCJAaGVyb2ljb25zL3JlYWN0LzI0L291dGxpbmUiLCJAdmlzeC92aXN4IiwiQHRyZW1vci9yZWFjdCIsInJ4anMiLCJAbXVpL21hdGVyaWFsIiwiQG11aS9pY29ucy1tYXRlcmlhbCIsInJlY2hhcnRzIiwicmVhY3QtdXNlIiwiZWZmZWN0IiwiQGVmZmVjdC9zY2hlbWEiLCJAZWZmZWN0L3BsYXRmb3JtIiwiQGVmZmVjdC9wbGF0Zm9ybS1ub2RlIiwiQGVmZmVjdC9wbGF0Zm9ybS1icm93c2VyIiwiQGVmZmVjdC9wbGF0Zm9ybS1idW4iLCJAZWZmZWN0L3NxbCIsIkBlZmZlY3Qvc3FsLW1zc3FsIiwiQGVmZmVjdC9zcWwtbXlzcWwyIiwiQGVmZmVjdC9zcWwtcGciLCJAZWZmZWN0L3NxbC1zcXVsaXRlLW5vZGUiLCJAZWZmZWN0L3NxbC1zcXVsaXRlLWJ1biIsIkBlZmZlY3Qvc3FsLXNxdWxpdGUtd2FzbSIsIkBlZmZlY3Qvc3FsLXNxdWxpdGUtcmVhY3QtbmF0aXZlIiwiQGVmZmVjdC9ycGMiLCJAZWZmZWN0L3JwYy1odHRwIiwiQGVmZmVjdC90eXBlY2xhc3MiLCJAZWZmZWN0L2V4cGVyaW1lbnRhbCIsIkBlZmZlY3Qvb3BlbnRlbGVtZXRyeSIsIkBtYXRlcmlhbC11aS9jb3JlIiwiQG1hdGVyaWFsLXVpL2ljb25zIiwiQHRhYmxlci9pY29ucy1yZWFjdCIsIm11aS1jb3JlIiwicmVhY3QtaWNvbnMvYWkiLCJyZWFjdC1pY29ucy9iaSIsInJlYWN0LWljb25zL2JzIiwicmVhY3QtaWNvbnMvY2ciLCJyZWFjdC1pY29ucy9jaSIsInJlYWN0LWljb25zL2RpIiwicmVhY3QtaWNvbnMvZmEiLCJyZWFjdC1pY29ucy9mYTYiLCJyZWFjdC1pY29ucy9mYyIsInJlYWN0LWljb25zL2ZpIiwicmVhY3QtaWNvbnMvZ2kiLCJyZWFjdC1pY29ucy9nbyIsInJlYWN0LWljb25zL2dyIiwicmVhY3QtaWNvbnMvaGkiLCJyZWFjdC1pY29ucy9oaTIiLCJyZWFjdC1pY29ucy9pbSIsInJlYWN0LWljb25zL2lvIiwicmVhY3QtaWNvbnMvaW81IiwicmVhY3QtaWNvbnMvbGlhIiwicmVhY3QtaWNvbnMvbGliIiwicmVhY3QtaWNvbnMvbHUiLCJyZWFjdC1pY29ucy9tZCIsInJlYWN0LWljb25zL3BpIiwicmVhY3QtaWNvbnMvcmkiLCJyZWFjdC1pY29ucy9yeCIsInJlYWN0LWljb25zL3NpIiwicmVhY3QtaWNvbnMvc2wiLCJyZWFjdC1pY29ucy90YiIsInJlYWN0LWljb25zL3RmaSIsInJlYWN0LWljb25zL3RpIiwicmVhY3QtaWNvbnMvdnNjIiwicmVhY3QtaWNvbnMvd2kiXX0sImJ1bmRsZVBhZ2VzUm91dGVyRGVwZW5kZW5jaWVzIjpmYWxzZSwiY29uZmlnRmlsZSI6Ii90bXAvbmV4dC1zdGF0c0VrQmtWai9zdGF0cy1hcHAvbmV4dC5jb25maWcuanMiLCJjb25maWdGaWxlTmFtZSI6Im5leHQuY29uZmlnLmpzIn0=","pagesType":"app","appDirLoader":"bmV4dC1hcHAtbG9hZGVyP25hbWU9YXBwJTJGYXBwLWVkZ2Utc3NyJTJGcGFnZSZwYWdlPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZVBhdGg9cHJpdmF0ZS1uZXh0LWFwcC1kaXIlMkZhcHAtZWRnZS1zc3IlMkZwYWdlLmpzJmFwcERpcj0lMkZ0bXAlMkZuZXh0LXN0YXRzRWtCa1ZqJTJGc3RhdHMtYXBwJTJGYXBwJmFwcFBhdGhzPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZUV4dGVuc2lvbnM9dHN4JnBhZ2VFeHRlbnNpb25zPXRzJnBhZ2VFeHRlbnNpb25zPWpzeCZwYWdlRXh0ZW5zaW9ucz1qcyZiYXNlUGF0aD0mYXNzZXRQcmVmaXg9Jm5leHRDb25maWdPdXRwdXQ9JmZseWluZ1NodXR0bGU9ZmFsc2UmcHJlZmVycmVkUmVnaW9uPSZtaWRkbGV3YXJlQ29uZmlnPWUzMCUzRCE=","sriEnabled":false,"middlewareConfig":"e30="}!
       var _self___RSC_MANIFEST;
 
       const incrementalCacheHandler = null;
@@ -439,53 +439,53 @@
       /***/
     },
 
-    /***/ 245: /***/ (
+    /***/ 9738: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 8791)
+        __webpack_require__.bind(__webpack_require__, 4930)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 4090)
+        __webpack_require__.bind(__webpack_require__, 8982)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 4426)
+        __webpack_require__.bind(__webpack_require__, 2149)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 6229)
+        __webpack_require__.bind(__webpack_require__, 5812)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 7823)
+        __webpack_require__.bind(__webpack_require__, 5766)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 3295)
+        __webpack_require__.bind(__webpack_require__, 7596)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 3477)
+        __webpack_require__.bind(__webpack_require__, 2931)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 9319)
+        __webpack_require__.bind(__webpack_require__, 8847)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1121)
+        __webpack_require__.bind(__webpack_require__, 94)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 3347)
+        __webpack_require__.bind(__webpack_require__, 5498)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 8977)
+        __webpack_require__.bind(__webpack_require__, 7310)
       );
 
       /***/
     },
 
-    /***/ 4667: /***/ () => {
+    /***/ 6912: /***/ () => {
       /***/
     },
 
-    /***/ 4125: /***/ (
+    /***/ 4310: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -505,7 +505,7 @@
       /***/
     },
 
-    /***/ 1196: /***/ (
+    /***/ 8824: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -517,7 +517,7 @@
         /* harmony export */
       });
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
-        __webpack_require__(5367);
+        __webpack_require__(5033);
 
       function RootLayout({ children }) {
         return /*#__PURE__*/ (0,
@@ -536,7 +536,7 @@
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
-    /******/ __webpack_require__.O(0, [92, 539], () => __webpack_exec__(5716));
+    /******/ __webpack_require__.O(0, [132, 560], () => __webpack_exec__(7180));
     /******/ 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([
   [8358],
   {
-    /***/ 5550: /***/ (
+    /***/ 9009: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/image",
         function () {
-          return __webpack_require__(613);
+          return __webpack_require__(5994);
         },
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 9552: /***/ (module, exports, __webpack_require__) => {
+    /***/ 6623: /***/ (module, exports, __webpack_require__) => {
       "use strict";
       /* __next_internal_client_entry_do_not_use__  cjs */
       Object.defineProperty(exports, "__esModule", {
@@ -40,17 +40,17 @@
         __webpack_require__(792)
       );
       const _head = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(3940)
+        __webpack_require__(8676)
       );
-      const _getimgprops = __webpack_require__(5767);
-      const _imageconfig = __webpack_require__(8605);
-      const _imageconfigcontextsharedruntime = __webpack_require__(709);
-      const _warnonce = __webpack_require__(3766);
-      const _routercontextsharedruntime = __webpack_require__(3052);
+      const _getimgprops = __webpack_require__(234);
+      const _imageconfig = __webpack_require__(9618);
+      const _imageconfigcontextsharedruntime = __webpack_require__(7690);
+      const _warnonce = __webpack_require__(629);
+      const _routercontextsharedruntime = __webpack_require__(5063);
       const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(3187)
+        __webpack_require__(7670)
       );
-      const _usemergedref = __webpack_require__(9908);
+      const _usemergedref = __webpack_require__(4484);
       // This is replaced by webpack define plugin
       const configEnv = {
         deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
@@ -371,7 +371,7 @@
       /***/
     },
 
-    /***/ 9908: /***/ (module, exports, __webpack_require__) => {
+    /***/ 4484: /***/ (module, exports, __webpack_require__) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -432,7 +432,7 @@
       /***/
     },
 
-    /***/ 5767: /***/ (
+    /***/ 234: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -448,9 +448,9 @@
           return getImgProps;
         },
       });
-      const _warnonce = __webpack_require__(3766);
-      const _imageblursvg = __webpack_require__(5067);
-      const _imageconfig = __webpack_require__(8605);
+      const _warnonce = __webpack_require__(629);
+      const _imageblursvg = __webpack_require__(5057);
+      const _imageconfig = __webpack_require__(9618);
       const VALID_LOADING_VALUES =
         /* unused pure expression or super */ null && [
           "lazy",
@@ -823,7 +823,7 @@
       /***/
     },
 
-    /***/ 5067: /***/ (__unused_webpack_module, exports) => {
+    /***/ 5057: /***/ (__unused_webpack_module, exports) => {
       "use strict";
       /**
        * A shared function, used on both client and server, to generate a SVG blur placeholder.
@@ -878,7 +878,7 @@
       /***/
     },
 
-    /***/ 5730: /***/ (
+    /***/ 9521: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -905,10 +905,10 @@
         },
       });
       const _interop_require_default = __webpack_require__(9608);
-      const _getimgprops = __webpack_require__(5767);
-      const _imagecomponent = __webpack_require__(9552);
+      const _getimgprops = __webpack_require__(234);
+      const _imagecomponent = __webpack_require__(6623);
       const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(3187)
+        __webpack_require__(7670)
       );
       function getImageProps(imgProps) {
         const { props } = (0, _getimgprops.getImgProps)(imgProps, {
@@ -940,7 +940,7 @@
       /***/
     },
 
-    /***/ 3187: /***/ (__unused_webpack_module, exports) => {
+    /***/ 7670: /***/ (__unused_webpack_module, exports) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -975,7 +975,7 @@
       /***/
     },
 
-    /***/ 613: /***/ (
+    /***/ 5994: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -992,8 +992,8 @@
 
       // EXTERNAL MODULE: ./node_modules/.pnpm/[email protected]/node_modules/react/jsx-runtime.js
       var jsx_runtime = __webpack_require__(7892);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_kk4yl5of4tlw2hjiprampjljdm/node_modules/next/image.js
-      var next_image = __webpack_require__(7790);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-459fd418-20241001_re_niu2to57kybirip2g6jbgdytbe/node_modules/next/image.js
+      var next_image = __webpack_require__(5656);
       var image_default = /*#__PURE__*/ __webpack_require__.n(next_image); // CONCATENATED MODULE: ./pages/nextjs.png
       /* harmony default export */ const nextjs = {
         src: "/_next/static/media/nextjs.cae0b805.png",
@@ -1023,12 +1023,12 @@
       /***/
     },
 
-    /***/ 7790: /***/ (
+    /***/ 5656: /***/ (
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(5730);
+      module.exports = __webpack_require__(9521);
 
       /***/
     },
@@ -1038,7 +1038,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [2888, 9774, 179], () =>
-      __webpack_exec__(5550)
+      __webpack_exec__(9009)
     );
     /******/ 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([
   [2058],
   {
-    /***/ 8862: /***/ (
+    /***/ 3895: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/routerDirect",
         function () {
-          return __webpack_require__(9153);
+          return __webpack_require__(398);
         },
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 9153: /***/ (
+    /***/ 398: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -33,7 +33,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(7892);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(9322);
+        __webpack_require__(25);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_router__WEBPACK_IMPORTED_MODULE_1__
@@ -53,12 +53,8 @@
       /***/
     },
 
-    /***/ 9322: /***/ (
-      module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      module.exports = __webpack_require__(8136);
+    /***/ 25: /***/ (module, __unused_webpack_exports, __webpack_require__) => {
+      module.exports = __webpack_require__(5717);
 
       /***/
     },
@@ -68,7 +64,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [2888, 9774, 179], () =>
-      __webpack_exec__(8862)
+      __webpack_exec__(3895)
     );
     /******/ 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([
   [9807],
   {
-    /***/ 4608: /***/ (
+    /***/ 2944: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/withRouter",
         function () {
-          return __webpack_require__(3539);
+          return __webpack_require__(2931);
         },
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 3539: /***/ (
+    /***/ 2931: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -33,7 +33,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(7892);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(9322);
+        __webpack_require__(25);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_router__WEBPACK_IMPORTED_MODULE_1__
@@ -52,12 +52,8 @@
       /***/
     },
 
-    /***/ 9322: /***/ (
-      module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      module.exports = __webpack_require__(8136);
+    /***/ 25: /***/ (module, __unused_webpack_exports, __webpack_require__) => {
+      module.exports = __webpack_require__(5717);
 
       /***/
     },
@@ -67,7 +63,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [2888, 9774, 179], () =>
-      __webpack_exec__(4608)
+      __webpack_exec__(2944)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for 38c1587e-HASH.js
@@ -1,13 +1,13 @@
 "use strict";
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
-  [4636],
+  [4752],
   {
-    /***/ 6004: /***/ (
+    /***/ 4240: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
     ) => {
-      /* provided dependency */ var process = __webpack_require__(1201);
+      /* provided dependency */ var process = __webpack_require__(1918);
       /**
        * @license React
        * react-dom-client.production.js
@@ -22,9 +22,9 @@
  Modernizr 3.0.0pre (Custom Build) | MIT
 */
 
-      var Scheduler = __webpack_require__(7364),
-        React = __webpack_require__(7462),
-        ReactDOM = __webpack_require__(4162);
+      var Scheduler = __webpack_require__(703),
+        React = __webpack_require__(4336),
+        ReactDOM = __webpack_require__(2170);
       function formatProdErrorMessage(code) {
         var url = "https://react.dev/errors/" + code;
         if (1 < arguments.length) {
@@ -731,6 +731,13 @@
         for (var laneMap = [], i = 0; 31 > i; i++) laneMap.push(initial);
         return laneMap;
       }
+      function markRootUpdated$1(root, updateLane) {
+        root.pendingLanes |= updateLane;
+        268435456 !== updateLane &&
+          ((root.suspendedLanes = 0),
+          (root.pingedLanes = 0),
+          (root.warmLanes = 0));
+      }
       function markRootFinished(
         root,
         finishedLanes,
@@ -2501,7 +2508,12 @@
           (update.lane = lane | 536870912));
       }
       function getRootForUpdatedFiber(sourceFiber) {
-        throwIfInfiniteUpdateLoopDetected();
+        if (50 < nestedUpdateCount)
+          throw (
+            ((nestedUpdateCount = 0),
+            (rootWithNestedUpdates = null),
+            Error(formatProdErrorMessage(185)))
+          );
         for (var parent = sourceFiber.return; null !== parent; )
           (sourceFiber = parent), (parent = sourceFiber.return);
         return 3 === sourceFiber.tag ? sourceFiber.stateNode : null;
@@ -10849,7 +10861,6 @@
         workInProgressRootConcurrentErrors = null,
         workInProgressRootRecoverableErrors = null,
         workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
-        didIncludeCommitPhaseUpdate = !1,
         globalMostRecentFallbackTime = 0,
         workInProgressRootRenderTargetTime = Infinity,
         workInProgressTransitions = null,
@@ -10895,7 +10906,7 @@
               workInProgressDeferredLane,
               workInProgressRootDidSkipSuspendedSiblings
             );
-        markRootUpdated(root, lane);
+        markRootUpdated$1(root, lane);
         if (0 === (executionContext & 2) || root !== workInProgressRoot)
           root === workInProgressRoot &&
             (0 === (executionContext & 2) &&
@@ -11190,17 +11201,6 @@
         }
         return !0;
       }
-      function markRootUpdated(root, updatedLanes) {
-        root.pendingLanes |= updatedLanes;
-        268435456 !== updatedLanes &&
-          ((root.suspendedLanes = 0),
-          (root.pingedLanes = 0),
-          (root.warmLanes = 0));
-        executionContext & 2
-          ? (workInProgressRootDidIncludeRecursiveRenderUpdate = !0)
-          : executionContext & 4 && (didIncludeCommitPhaseUpdate = !0);
-        throwIfInfiniteUpdateLoopDetected();
-      }
       function markRootSuspended(
         root,
         suspendedLanes,
@@ -11722,8 +11722,8 @@
         while (null !== rootWithPendingPassiveEffects);
         if (0 !== (executionContext & 6))
           throw Error(formatProdErrorMessage(327));
-        var finishedWork = root.finishedWork,
-          lanes = root.finishedLanes;
+        var finishedWork = root.finishedWork;
+        didIncludeRenderPhaseUpdate = root.finishedLanes;
         if (null === finishedWork) return null;
         root.finishedWork = null;
         root.finishedLanes = 0;
@@ -11736,13 +11736,12 @@
         remainingLanes |= concurrentlyUpdatedLanes;
         markRootFinished(
           root,
-          lanes,
+          didIncludeRenderPhaseUpdate,
           remainingLanes,
           spawnedLane,
           updatedLanes,
           suspendedRetryLanes
         );
-        didIncludeCommitPhaseUpdate = !1;
         root === workInProgressRoot &&
           ((workInProgress = workInProgressRoot = null),
           (workInProgressRootRenderLanes = 0));
@@ -11783,7 +11782,7 @@
         rootDoesHavePassiveEffects
           ? ((rootDoesHavePassiveEffects = !1),
             (rootWithPendingPassiveEffects = root),
-            (pendingPassiveEffectsLanes = lanes))
+            (pendingPassiveEffectsLanes = didIncludeRenderPhaseUpdate))
           : releaseRootPooledCache(root, remainingLanes);
         remainingLanes = root.pendingLanes;
         0 === remainingLanes && (legacyErrorBoundariesThatAlreadyFailed = null);
@@ -11801,9 +11800,8 @@
               });
         0 !== (pendingPassiveEffectsLanes & 3) && flushPassiveEffects();
         remainingLanes = root.pendingLanes;
-        didIncludeRenderPhaseUpdate ||
-        didIncludeCommitPhaseUpdate ||
-        (0 !== (lanes & 4194218) && 0 !== (remainingLanes & 42))
+        0 !== (didIncludeRenderPhaseUpdate & 4194218) &&
+        0 !== (remainingLanes & 42)
           ? root === rootWithNestedUpdates
             ? nestedUpdateCount++
             : ((nestedUpdateCount = 0), (rootWithNestedUpdates = root))
@@ -11878,7 +11876,7 @@
         );
         rootFiber = enqueueUpdate(rootFiber, sourceFiber, 2);
         null !== rootFiber &&
-          (markRootUpdated(rootFiber, 2), ensureRootIsScheduled(rootFiber));
+          (markRootUpdated$1(rootFiber, 2), ensureRootIsScheduled(rootFiber));
       }
       function captureCommitPhaseError(
         sourceFiber,
@@ -11915,7 +11913,7 @@
                     nearestMountedAncestor,
                     sourceFiber
                   ),
-                  markRootUpdated(instance, 2),
+                  markRootUpdated$1(instance, 2),
                   ensureRootIsScheduled(instance));
                 break;
               }
@@ -11944,10 +11942,6 @@
         null !== pingCache && pingCache.delete(wakeable);
         root.pingedLanes |= root.suspendedLanes & pingedLanes;
         root.warmLanes &= ~pingedLanes;
-        executionContext & 2
-          ? (workInProgressRootDidIncludeRecursiveRenderUpdate = !0)
-          : executionContext & 4 && (didIncludeCommitPhaseUpdate = !0);
-        throwIfInfiniteUpdateLoopDetected();
         workInProgressRoot === root &&
           (workInProgressRootRenderLanes & pingedLanes) === pingedLanes &&
           (4 === workInProgressRootExitStatus ||
@@ -11968,7 +11962,7 @@
           retryLane
         );
         null !== boundaryFiber &&
-          (markRootUpdated(boundaryFiber, retryLane),
+          (markRootUpdated$1(boundaryFiber, retryLane),
           ensureRootIsScheduled(boundaryFiber));
       }
       function retryDehydratedSuspenseBoundary(boundaryFiber) {
@@ -11997,18 +11991,6 @@
         null !== retryCache && retryCache.delete(wakeable);
         retryTimedOutBoundary(boundaryFiber, retryLane);
       }
-      function throwIfInfiniteUpdateLoopDetected() {
-        if (100 < nestedUpdateCount)
-          throw (
-            ((nestedUpdateCount = 0),
-            (rootWithNestedUpdates = null),
-            executionContext & 2 &&
-              null !== workInProgressRoot &&
-              (workInProgressRoot.errorRecoveryDisabledLanes |=
-                workInProgressRootRenderLanes),
-            Error(formatProdErrorMessage(185)))
-          );
-      }
       function scheduleCallback$1(priorityLevel, callback) {
         return scheduleCallback$3(priorityLevel, callback);
       }
@@ -12318,20 +12300,20 @@
         }
       }
       for (
-        var i$jscomp$inline_1419 = 0;
-        i$jscomp$inline_1419 < simpleEventPluginEvents.length;
-        i$jscomp$inline_1419++
+        var i$jscomp$inline_1432 = 0;
+        i$jscomp$inline_1432 < simpleEventPluginEvents.length;
+        i$jscomp$inline_1432++
       ) {
-        var eventName$jscomp$inline_1420 =
-            simpleEventPluginEvents[i$jscomp$inline_1419],
-          domEventName$jscomp$inline_1421 =
-            eventName$jscomp$inline_1420.toLowerCase(),
-          capitalizedEvent$jscomp$inline_1422 =
-            eventName$jscomp$inline_1420[0].toUpperCase() +
-            eventName$jscomp$inline_1420.slice(1);
+        var eventName$jscomp$inline_1433 =
+            simpleEventPluginEvents[i$jscomp$inline_1432],
+          domEventName$jscomp$inline_1434 =
+            eventName$jscomp$inline_1433.toLowerCase(),
+          capitalizedEvent$jscomp$inline_1435 =
+            eventName$jscomp$inline_1433[0].toUpperCase() +
+            eventName$jscomp$inline_1433.slice(1);
         registerSimpleEvent(
-          domEventName$jscomp$inline_1421,
-          "on" + capitalizedEvent$jscomp$inline_1422
+          domEventName$jscomp$inline_1434,
+          "on" + capitalizedEvent$jscomp$inline_1435
         );
       }
       registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -16000,16 +15982,16 @@
           0 === i && attemptExplicitHydrationTarget(target);
         }
       };
-      var isomorphicReactPackageVersion$jscomp$inline_1666 = React.version;
+      var isomorphicReactPackageVersion$jscomp$inline_1679 = React.version;
       if (
-        "19.0.0-rc-2d16326d-20240930" !==
-        isomorphicReactPackageVersion$jscomp$inline_1666
+        "19.0.0-rc-459fd418-20241001" !==
+        isomorphicReactPackageVersion$jscomp$inline_1679
       )
         throw Error(
           formatProdErrorMessage(
             527,
-            isomorphicReactPackageVersion$jscomp$inline_1666,
-            "19.0.0-rc-2d16326d-20240930"
+            isomorphicReactPackageVersion$jscomp$inline_1679,
+            "19.0.0-rc-459fd418-20241001"
           )
         );
       ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16029,25 +16011,25 @@
           null === componentOrElement ? null : componentOrElement.stateNode;
         return componentOrElement;
       };
-      var internals$jscomp$inline_2137 = {
+      var internals$jscomp$inline_2150 = {
         bundleType: 0,
-        version: "19.0.0-rc-2d16326d-20240930",
+        version: "19.0.0-rc-459fd418-20241001",
         rendererPackageName: "react-dom",
         currentDispatcherRef: ReactSharedInternals,
         findFiberByHostInstance: getClosestInstanceFromNode,
-        reconcilerVersion: "19.0.0-rc-2d16326d-20240930",
+        reconcilerVersion: "19.0.0-rc-459fd418-20241001",
       };
       if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
-        var hook$jscomp$inline_2138 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
+        var hook$jscomp$inline_2151 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
         if (
-          !hook$jscomp$inline_2138.isDisabled &&
-          hook$jscomp$inline_2138.supportsFiber
+          !hook$jscomp$inline_2151.isDisabled &&
+          hook$jscomp$inline_2151.supportsFiber
         )
           try {
-            (rendererID = hook$jscomp$inline_2138.inject(
-              internals$jscomp$inline_2137
+            (rendererID = hook$jscomp$inline_2151.inject(
+              internals$jscomp$inline_2150
             )),
-              (injectedHook = hook$jscomp$inline_2138);
+              (injectedHook = hook$jscomp$inline_2151);
           } catch (err) {}
       }
       exports.createRoot = function (container, options) {
@@ -16137,13 +16119,13 @@
         identifierPrefix.callback = null;
         enqueueUpdate(options, identifierPrefix, isStrictMode);
         initialChildren.current.lanes = isStrictMode;
-        markRootUpdated(initialChildren, isStrictMode);
+        markRootUpdated$1(initialChildren, isStrictMode);
         ensureRootIsScheduled(initialChildren);
         container[internalContainerInstanceKey] = initialChildren.current;
         listenToAllSupportedEvents(container);
         return new ReactDOMHydrationRoot(initialChildren);
       };
-      exports.version = "19.0.0-rc-2d16326d-20240930";
+      exports.version = "19.0.0-rc-459fd418-20241001";
 
       /***/
     },
Diff for 5877-HASH.js

Diff too large to display

Diff for main-HASH.js

Diff too large to display

Diff for app-page-exp..ntime.dev.js
failed to diff
Diff for app-page-exp..time.prod.js

Diff too large to display

Diff for app-page-tur..time.prod.js

Diff too large to display

Diff for app-page-tur..time.prod.js

Diff too large to display

Diff for app-page.runtime.dev.js
failed to diff
Diff for app-page.runtime.prod.js

Diff too large to display

Commit: 7bf1f95

@eps1lon eps1lon closed this Oct 10, 2024
@eps1lon eps1lon deleted the update/react/459fd418-20241001 branch October 10, 2024 15:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI approved Approve running CI for fork create-next-app Related to our CLI tool for quickly starting a new Next.js application. examples Issue/PR related to examples tests type: next type: react-sync
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants