I'd like webpack to search for files in several paths. For example, if i do
import img from './img/smth.png'
in file /src/components/name/index.js, webpack try to search for this file not only in /src/components/name/img/ but also in /src/common/img
Is it possible?