您好,登錄后才能下訂單哦!
今天小編給大家分享一下vue熱替換失效的原因是什么及如何解決的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
1.觀察文件位置錯誤
{
env: require('./dev.env'), port: 8080, autoOpenBrowser: true, assetsSubDirectory: 'static',//必須 assetsPublicPath: '/',
失效是為什么?是因為修改了源代碼后,依然會立刻編譯,但是通常被觀察的新編譯的文件位置錯了。也就是說瀏覽器顯示的東西與服務器觀察的東西是一個位置,而編譯出來文件是另外的位置。
解決辦法是:config/index.js中 dev的這個參數必須為static
2.項目目錄包含特殊字符
像這樣的路徑 D:\(myworkspace)\vue-answer-project
這種目錄中有一個括號!!!就有可能在瀏覽器中打開后,發現console報錯
http://localhost:8080/__webpack_hmr net::ERR_INCOMPLETE_CHUNKED_ENCODING
這是什么意思呢?就是熱替換模塊報錯,中斷了觀察頁面與熱替換模塊的鏈接,無法收到事件。
解決辦法就是:去掉這樣的路徑
3.npm run build后,打開瀏覽器一片空白
這個位置是根據文件webpack.config.js中的publicPath進行指定的。也就是服務器觀察位置是 publicPath: "XX/build.js"這里面的 /XX/build.js這個文件,這個文件需要你在文件 index.html中 正確引入。
// webpack編譯輸出的發布路徑 // => 將 build 的路徑前綴修改為 ' ./ '(原本為 ' / '),是因為打包(npm run build)之后, // 外部引入 js 和 css 文件時,如果路徑以 ' / ' 開頭,在本地是無法找到對應文件的(服務器上沒問題)
module.exports = { build: { env: require('./prod.env'), index: path.resolve(__dirname, '../dist/index.html'), assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: './', productionSourceMap: true, // Gzip off by default as many popular static hosts such as // Surge or Netlify already gzip all static assets for you. // Before setting to `true`, make sure to: // npm install --save-dev compression-webpack-plugin productionGzip: false, productionGzipExtensions: ['js', 'css'], // Run the build command with an extra argument to // View the bundle analyzer report after build finishes: // `npm run build --report` // Set to `true` or `false` to always turn it on or off bundleAnalyzerReport: process.env.npm_config_report }, dev: { env: require('./dev.env'), port: 8081, autoOpenBrowser: true, assetsSubDirectory: 'static', assetsPublicPath: '/', proxyTable: {}, // CSS Sourcemaps off by default because relative paths are "buggy" // with this option, according to the CSS-Loader README // (https://github.com/webpack/css-loader#sourcemaps) // In our experience, they generally work as expected, // just be aware of this issue when enabling this option. cssSourceMap: true }
解決辦法是:在上面的build.assetsPublicPath的值 改為 "./"
以上就是“vue熱替換失效的原因是什么及如何解決”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。