Base folder structure is node_modules, public, src.
css file in public folder public/styles.css images are in src/images/icon.png
what should be the correct image path for this image for any class in css file which kept in public folder in localhost eg: .icon { background: url(../src/images/icon.png) no-repeat left top;
images can see directly from http://localhost:3000/exampleimage.png if I have images in public folder.
Please help