cannot import image with create-react-app

前端 未结 5 1381
悲&欢浪女
悲&欢浪女 2021-02-18 21:43

I\'m using create-react-app, and I am struggling to load images. I am following the instructions as specified here, but I keep seeing the following error:



        
5条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-18 22:11

    I had the same problem and was able to solve with a require statement.

    const photo = require('./party.png');

    and then in your component use that like:

    render() {
        return (
            
    

    also see this post Displaying a static image using React, Typescript and Webpack

提交回复
热议问题