I’m building a Shopify app and for some reason I can’t get any of the local images to render. I am using the node.js with next.js framework spun up from the Shopify CLI. Images work when they are hosted with an absolute url, but I cannot for the life of me get them to work when they rest in my src/images folder. I’ve built a website on next.js and did not have this issue. I’ve tried importing the next/Image component, importing from the relative path and then using that as the source (import imgSrc from “…path.jpg”;), and putting in the path directly into a regular img element. I noticed on another app they either used the Shopify CDN absolute url or have some sort of SVG function for their vector images. Am I restricted to Shopify CDN? If so, do I host on my dev store or where would that be?