When importing images directly into Figma Make, for some reason some of the images were directly linked in the form of src=”/src/imports/imagename.png” instead of using an import at the top of the page and then linking to the imported asset, eg:
import importedImage from “@/imports/imagename.png”
…
<img
src={importedImagge}
alt="This is the image"
className="h-full object-contain"
/>
This only occurred for newly-added images. Images directly linked via the img tag’s src attribute are not processed during the build and do not end up correctly linked in the final distribution (dist) output.
Fix was to manually edit the code where any images were referenced in the img src attribute and import them same as other assets.


