-
Notifications
You must be signed in to change notification settings - Fork 30.6k
Expand file tree
/
Copy pathpriority.js
More file actions
73 lines (71 loc) · 1.48 KB
/
priority.js
File metadata and controls
73 lines (71 loc) · 1.48 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import React from 'react'
import Image from 'next/image'
const Page = () => {
return (
<div>
<p>Priority Page</p>
<Image
priority
id="basic-image"
alt="basic-image"
src="/test.jpg"
width="400"
height="400"
></Image>
<Image
priority
id="basic-image-crossorigin"
alt="basic-image-crossorigin"
src="/test.webp"
width="400"
height="400"
crossOrigin="use-credentials"
></Image>
<Image
priority
id="basic-image-referrerpolicy"
alt="basic-image-referrerpolicy"
src="/test.png"
width="400"
height="400"
referrerPolicy="no-referrer"
></Image>
<Image
loading="eager"
id="load-eager"
alt="load-eager"
src="/test.png"
width="200"
height="200"
></Image>
<Image
priority
id="responsive1"
alt="responsive1"
src="/wide.png"
width="1200"
height="700"
sizes="100vw"
/>
<Image
priority
id="responsive2"
alt="responsive2"
src="/wide.png"
width="1200"
height="700"
sizes="100vw"
/>
<Image
id="pri-low"
alt="pri-low"
src="/test.webp"
width="100"
height="100"
fetchPriority="low"
/>
<p id="stubtext">This is the priority page</p>
</div>
)
}
export default Page