Reactjs – React images paths are working with the img tag, but not working in css
I'm struggling with image serving in React. <img src="/images/test.jpg" alt="" /> works (in jsx/html). background-image: url("/images/test.jpg"); does not work (in css). I've never had these problems with nextjs, but for various reasons, I can't use that on this project. I…