Importing static images
Unanswered
Crucian carp posted this in #help-forum
Crucian carpOP
Hi, I am trying to import static images that are in my /public folder. The only thing that works is when I specify the absolute path:
I thought I could just import images in the /public folder with
import pic1 from "../../public/images/pic1.jpg";
import pic2 from "../../public/images/pic2.jpg";
import pic3 from "../../public/images/pic3.jpg";
import pic4 from "../../public/images/pic4.jpg";
import pic5 from "../../public/images/pic5.jpg";
import pic6 from "../../public/images/pic6.jpg";I thought I could just import images in the /public folder with
/.