個人GitHub博客,不少內容能夠看,喜歡的給星星哦 https://github.com/liangfengbo/frontendhtml
mpvue開發小程序時候,要添加靜態本地圖片vue
<img src="../../images/bg.png" alt="">
會報錯:webpack
VM14878:2 Failed to load local image resource /images/bg.png the server responded with a status of 404 (HTTP/1.1 404 Not Found)
緣由有不少種,解決辦法能夠改webpack,或mpvue的包,這裏提供一個很是直接的辦法:git
直接寫 /static/img/xx.png 好比:把圖片放在根目錄下的static文件下 <img src="/static/img/bg.png" > 就能夠了
緣由也很簡單,static就是專門放靜態資源文件的,存放在根目錄下,直接就用github
個人GitHub博客,不少內容能夠看,喜歡的給星星哦 https://github.com/liangfengbo/frontendweb