Relative Path
images: {
deviceSizes: [320, 420, 768, 1024, 1200],
loader: "imgix",
path: "https://<account>.imgix.net/",
},
Then in your component,
const imgSrc = "random.png";
<Image
src={imgSrc} // <= https://<account>.imgix.net/random.png
width={300}
height={300}
alt={alt}
/>
Absolute Path
images: {
deviceSizes: [320, 420, 768, 1024, 1200],
loader: "imgix",
path: "",
},
Then in your component,
const imgSrc = "https://<imagesource-domain>/random.png";
<Image
src={imgSrc} // <= https://<imagesource-domain>/random.png
width={300}
height={300}
alt={alt}
/>