Removed reference to localhost
This commit is contained in:
parent
9bd6f8daac
commit
71c5088e3d
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ import Image from 'next/image';
|
||||||
const FeatureImage = ({ imagedata, basepath }) => (
|
const FeatureImage = ({ imagedata, basepath }) => (
|
||||||
<div className="featuredimage">
|
<div className="featuredimage">
|
||||||
<Image
|
<Image
|
||||||
src={"http://localhost:1337"+imagedata.attributes.url}
|
src={imagedata.attributes.url}
|
||||||
height={imagedata.attributes.height}
|
height={imagedata.attributes.height}
|
||||||
width={imagedata.attributes.width}
|
width={imagedata.attributes.width}
|
||||||
priority={true}
|
priority={true}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue