I'm using parcelJs as build tool on a project. The project has blazy package for lazy loading for images.
My problem comes from the HTML, I have my images inside a src/img folder, and the src attribute works fine but the data-src doesn't. Is there any way to set this path correctly?
Working fine without lazy
<img src="./img/global-components/card/card-img-placeholder.png" alt="placeholder" class="g--card-02__media g--lazy-01">
Not working fine with lazy
<img data-src="./img/global-components/card/card-img-placeholder.png" alt="placeholder" class="g--card-02__media g--lazy-01">