溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue中熱替換失效的原因有哪些

發(fā)布時(shí)間:2021-07-09 15:13:47 來源:億速云 閱讀:133 作者:Leah 欄目:web開發(fā)

vue中熱替換失效的原因有哪些,相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

1.觀察文件位置錯誤

{

 env: require('./dev.env'),
 port: 8080,
 autoOpenBrowser: true,
 assetsSubDirectory: 'static',//必須
 assetsPublicPath: '/',

失效是為什么?是因?yàn)樾薷牧嗽创a后,依然會立刻編譯,但是通常被觀察的新編譯的文件位置錯了。也就是說瀏覽器顯示的東西與服務(wù)器觀察的東西是一個位置,而編譯出來文件是另外的位置。

解決辦法是:config/index.js中 dev的這個參數(shù)必須為static

2.項(xiàng)目目錄包含特殊字符

像這樣的路徑 D:\(myworkspace)\vue-answer-project

這種目錄中有一個括號!??!就有可能在瀏覽器中打開后,發(fā)現(xiàn)console報(bào)錯

http://localhost:8080/__webpack_hmr net::ERR_INCOMPLETE_CHUNKED_ENCODING

這是什么意思呢?就是熱替換模塊報(bào)錯,中斷了觀察頁面與熱替換模塊的鏈接,無法收到事件。

解決辦法就是:去掉這樣的路徑

3.npm run build后,打開瀏覽器一片空白

這個位置是根據(jù)文件webpack.config.js中的publicPath進(jìn)行指定的。也就是服務(wù)器觀察位置是 publicPath: "XX/build.js"這里面的 /XX/build.js這個文件,這個文件需要你在文件 index.html中 正確引入。

// webpack編譯輸出的發(fā)布路徑
// => 將 build 的路徑前綴修改為 ' ./ '(原本為 ' / '),是因?yàn)榇虬?npm run build)之后,
// 外部引入 js 和 css 文件時(shí),如果路徑以 ' / ' 開頭,在本地是無法找到對應(yīng)文件的(服務(wù)器上沒問題)
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的值 改為 "./"

看完上述內(nèi)容,你們掌握vue中熱替換失效的原因有哪些的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI