如果使用create-react-app和require導入圖像,require返回一個ES模塊而不是字符串。這是因為在file-loader中,esModule選項是默認啟用的。
用以下方式之一導入圖像:
const image = require('../path/to/image.jpg').default;
// OR
import image from '../path/to/image.jpg';
如果使用create-react-app和require導入圖像,require返回一個ES模塊而不是字符串。這是因為在file-loader中,esModule選項是默認啟用的。
用以下方式之一導入圖像:
const image = require('../path/to/image.jpg').default;
// OR
import image from '../path/to/image.jpg';
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。