Can't display static image in the same folder as the component in Angular [closed]

流过昼夜 提交于 2019-12-02 13:39:13

You need to put the image in assets folder and then reference it in your html like this

<img src="assets/img/logo.png">

You need to do this, as the cli compiles and bundles your application it also bundles your assets too and path to image may change during bundling process.

See this link for an example

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!