File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
import Image from 'next/image'
2
2
import img from './unsplash.jpg'
3
+ import logo from './logomark.svg'
3
4
4
5
const Images = ( ) => (
5
6
< div >
@@ -11,6 +12,9 @@ const Images = () => (
11
12
</ a > { ' ' }
12
13
on < a href = "https://unsplash.com/?utm_source=unsplash& utm_medium = referral & utm_content = creditCopyText " > Unsplash</ a >
13
14
</ p >
15
+ < p >
16
+ < Image src = { logo } alt = "netlify logomark" />
17
+ </ p >
14
18
</ div >
15
19
)
16
20
Original file line number Diff line number Diff line change @@ -39,10 +39,13 @@ const handler = async (event) => {
39
39
const quality = parseInt ( q ) || 60
40
40
41
41
let imageUrl
42
+ let isRemoteImage = false
42
43
// Relative image
43
44
if ( parsedUrl . startsWith ( '/' ) ) {
44
- imageUrl = `${ process . env . DEPLOY_URL || `http://${ event . headers . host } ` } ${ parsedUrl } `
45
+ const protocol = event . headers [ 'x-forwarded-proto' ] || 'http'
46
+ imageUrl = `${ protocol } ://${ event . headers . host || event . hostname } ${ parsedUrl } `
45
47
} else {
48
+ isRemoteImage = true
46
49
// Remote images need to be in the allowlist
47
50
const allowedDomains = process . env . NEXT_IMAGE_ALLOWED_DOMAINS
48
51
? process . env . NEXT_IMAGE_ALLOWED_DOMAINS . split ( ',' ) . map ( ( domain ) => domain . trim ( ) )
@@ -96,7 +99,7 @@ const handler = async (event) => {
96
99
return {
97
100
statusCode : 302 ,
98
101
headers : {
99
- Location : imageUrl ,
102
+ Location : isRemoteImage ? imageUrl : parsedUrl ,
100
103
} ,
101
104
}
102
105
}
You can’t perform that action at this time.
0 commit comments