1. 程式人生 > >vue打包後出現"Failed to load resource: net::ERR_FILE_NOT_FOUND"錯誤

vue打包後出現"Failed to load resource: net::ERR_FILE_NOT_FOUND"錯誤

出現異常 nbsp 搭建項目 9.png set build 技術分享 tsp 技術

創建vue腳手架搭建項目之後,用npm run build經行打包,運行index.html後出現異常:

技術分享圖片

打開dist/index.html, 諸如這些的,引入是有問題的,

技術分享圖片

技術分享圖片

這邊的全部是絕對路徑,而本應該是相對路徑。

解決辦法:

打開config/index.js文件,將build->assetsPublicPath改為“./”,即可,就是前面加個點。

技術分享圖片

vue打包後出現"Failed to load resource: net::ERR_FILE_NOT_FOUND"錯誤