File size: 523 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import Link from 'next/link'

export default function Page(props) {
  return (
    <>
      <p id="page">index</p>
      <p id="props">{JSON.stringify(props)}</p>
      <Link href="/blog/first" id="to-blog-first">
        /blog/first
      </Link>
      <br />
      <Link href="/blog/second" id="to-blog-second">
        /blog/second
      </Link>
      <br />
    </>
  )
}

export function getStaticProps() {
  console.log('revalidating /')
  return {
    props: {
      now: Date.now(),
    },
    revalidate: 1,
  }
}