您好,登錄后才能下訂單哦!
今天小編給大家分享一下vue熱替換失效的原因是什么及如何解決的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。
1.觀察文件位置錯(cuò)誤
{
env: require('./dev.env'), port: 8080, autoOpenBrowser: true, assetsSubDirectory: 'static',//必須 assetsPublicPath: '/',
失效是為什么?是因?yàn)樾薷牧嗽创a后,依然會(huì)立刻編譯,但是通常被觀察的新編譯的文件位置錯(cuò)了。也就是說(shuō)瀏覽器顯示的東西與服務(wù)器觀察的東西是一個(gè)位置,而編譯出來(lái)文件是另外的位置。
解決辦法是:config/index.js中 dev的這個(gè)參數(shù)必須為static
2.項(xiàng)目目錄包含特殊字符
像這樣的路徑 D:\(myworkspace)\vue-answer-project
這種目錄中有一個(gè)括號(hào)!??!就有可能在瀏覽器中打開(kāi)后,發(fā)現(xiàn)console報(bào)錯(cuò)
http://localhost:8080/__webpack_hmr net::ERR_INCOMPLETE_CHUNKED_ENCODING
這是什么意思呢?就是熱替換模塊報(bào)錯(cuò),中斷了觀察頁(yè)面與熱替換模塊的鏈接,無(wú)法收到事件。
解決辦法就是:去掉這樣的路徑
3.npm run build后,打開(kāi)瀏覽器一片空白
這個(gè)位置是根據(jù)文件webpack.config.js中的publicPath進(jìn)行指定的。也就是服務(wù)器觀察位置是 publicPath: "XX/build.js"這里面的 /XX/build.js這個(gè)文件,這個(gè)文件需要你在文件 index.html中 正確引入。
// webpack編譯輸出的發(fā)布路徑 // => 將 build 的路徑前綴修改為 ' ./ '(原本為 ' / '),是因?yàn)榇虬?npm run build)之后, // 外部引入 js 和 css 文件時(shí),如果路徑以 ' / ' 開(kāi)頭,在本地是無(wú)法找到對(duì)應(yīng)文件的(服務(wù)器上沒(méi)問(wèn)題)
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熱替換失效的原因是什么及如何解決”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。