We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3b0a20 commit a86b52dCopy full SHA for a86b52d
tests/fixtures/simple/app/after/check/page.js
@@ -1,13 +1,10 @@
1
export const revalidate = 3600 // arbitrarily long, just so that it doesn't happen during a test run
2
3
-
4
export default async function Page() {
5
const data = {
6
timestamp: Date.now(),
7
}
8
console.log('/timestamp/key/[key] rendered', data)
9
10
- return (
11
- <div id="page-info">{JSON.stringify(data)}</div>
12
- )
+ return <div id="page-info">{JSON.stringify(data)}</div>
13
tests/fixtures/simple/next.config.js
@@ -8,7 +8,7 @@ const nextConfig = {
outputFileTracingIncludes: {
'/': ['public/**'],
},
- after: true
+ after: true,
images: {
14
remotePatterns: [
0 commit comments