0
我將圖像導入到一個組件,並且由於我們的文件結構,需要一個複雜的相對路徑:有沒有更好的方式導入反應中的圖像?
// TODO is there a better way of importing images? image helper?
import browserImg from './../../../assets/images/screenshot-browser.png';
import phoneImg from './../../../assets/images/screenshot-phone.png';
是否有這樣做的更好的辦法?像ruby中的圖像助手/資產管道?
是你使用'create-react-app'?我會說這是一個比React更多的webpack問題。你可以像[**這個答案**]一樣更改'resolve.root'(http://stackoverflow.com/questions/27502608/resolving-require-paths-with-webpack)。 – Tholle