-
Notifications
You must be signed in to change notification settings - Fork 27.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix manifest error when using route.js (#46102)
This ensures there is no client component entry created for route.js. @shuding is going to investigate further why this would break the manifest generation in development. Fixes #45956 Fixes NEXT-588 <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: --> ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] [e2e](https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs) tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Documentation / Examples - [ ] Make sure the linting passes by running `pnpm build && pnpm lint` - [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
- Loading branch information
1 parent
be2d413
commit 28eb15f
Showing
6 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { NextResponse } from 'next/server' | ||
|
||
export async function GET() { | ||
return NextResponse.json({ url: 'https://www.example.com' }) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default function RootLayout({ children }) { | ||
return ( | ||
<html> | ||
<head /> | ||
<body>{children}</body> | ||
</html> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'use client' | ||
|
||
export default function Home() { | ||
return <h1 id="page-title">Page that would break</h1> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* @type {import('next').NextConfig} | ||
*/ | ||
const nextConfig = { | ||
experimental: { appDir: true }, | ||
} | ||
|
||
module.exports = nextConfig |
51 changes: 51 additions & 0 deletions
51
test/e2e/app-dir/route-page-manifest-bug/route-page-manifest-bug.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import { createNextDescribe } from 'e2e-utils' | ||
import { check } from 'next-test-utils' | ||
|
||
createNextDescribe( | ||
'route-page-manifest-bug', | ||
{ | ||
files: __dirname, | ||
}, | ||
({ next }) => { | ||
// Recommended for tests that check HTML. Cheerio is a HTML parser that has a jQuery like API. | ||
it('should work when requesting route handler after page', async () => { | ||
const browser = await next.browser('/') | ||
expect(await browser.elementByCss('#page-title').text()).toBe( | ||
'Page that would break' | ||
) | ||
await browser.eval('window.location.href = "/abc"') | ||
await check( | ||
() => browser.eval('document.body.textContent'), | ||
'{"url":"https://www.example.com"}' | ||
) | ||
await browser.refresh() | ||
await check( | ||
() => browser.eval('document.body.textContent'), | ||
'{"url":"https://www.example.com"}' | ||
) | ||
await browser.refresh() | ||
await check( | ||
() => browser.eval('document.body.textContent'), | ||
'{"url":"https://www.example.com"}' | ||
) | ||
await browser.refresh() | ||
await check( | ||
() => browser.eval('document.body.textContent'), | ||
'{"url":"https://www.example.com"}' | ||
) | ||
|
||
await browser.back() | ||
expect(await browser.waitForElementByCss('#page-title').text()).toBe( | ||
'Page that would break' | ||
) | ||
await browser.refresh() | ||
expect(await browser.waitForElementByCss('#page-title').text()).toBe( | ||
'Page that would break' | ||
) | ||
await browser.refresh() | ||
expect(await browser.waitForElementByCss('#page-title').text()).toBe( | ||
'Page that would break' | ||
) | ||
}) | ||
} | ||
) |