-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure the Default Revalidate (#8880)
* Configure the Default Revalidate The default revalidate behavior should be configured by Next.js. Otherwise, the behavior might drift or change in non-semver compliant ways between Next.js and the builder (or other 3rd party setups). * Add additional comment
- Loading branch information
Showing
3 changed files
with
36 additions
and
0 deletions.
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,25 @@ | ||
import Link from 'next/link' | ||
|
||
// eslint-disable-next-line camelcase | ||
export async function unstable_getStaticProps () { | ||
return { | ||
props: { | ||
world: 'world', | ||
time: new Date().getTime() | ||
} | ||
} | ||
} | ||
|
||
export default ({ world, time }) => ( | ||
<> | ||
<p>hello {world}</p> | ||
<span>time: {time}</span> | ||
<Link href='/'> | ||
<a id='home'>to home</a> | ||
</Link> | ||
<br /> | ||
<Link href='/something'> | ||
<a id='something'>to something</a> | ||
</Link> | ||
</> | ||
) |
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