There is folder named 'img' inside public folder. If I write this, background: url(img/hero2.jpg) no-repeat center; Then it throws this error. Module not found: Can't resolve './img/hero2.jpg' in 'D:\Programming\react\redux-blog\src'
If I write this background: url(../public/img/hero1.jpg) no-repeat center; Then it says this. Module not found: You attempted to import ../public/img/hero1.jpg which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.