[Vue CLI 3] 配置之filenameHashing使用和源碼設計

執行 npm run build 以後的 dist 目錄的靜態資源的文件名多會追加上 hash 值,好比: page1.f151b4d3.jscss

那若是不要 hash 呢,你只須要配置 vue.config.js 文件中的 filenameHashinghtml

官方文檔也提到了由於 html 也是咱們經過插件生成的,靜態資源直接就 inject 進去的,因此,當 html 不是自動生成或者其餘狀況時候,就不能加 hash 了,能夠配置 false。vue

filenameHashing: false

咱們看看源碼實現:npm

首先它是 vue.config.js 的一個配置,在文件 cli-service/lib/options.js 中:函數

默認值是 trueui

filenameHashing: true

先看 css 部分,在文件 cli-service/lib/config/css.js 中:插件

const filename = getAssetPath(
      options,
      `css/[name]${options.filenameHashing ? '.[contenthash:8]' : ''}.css`
    )

再看 js 部分,在文件 cli-service/lib/config/prod.jscode

const filename = getAssetPath(
        options,
        `js/[name]${isLegacyBundle ? `-legacy` : ``}${options.filenameHashing ? '.[contenthash:8]' : ''}.js`
      )

他們多依賴函數 getAssetPath,在文件 util/getAssetPath.js 中定義了htm

const path = require('path')

module.exports = function getAssetPath (options, filePath, placeAtRootIfRelative) {
  return options.assetsDir
    ? path.posix.join(options.assetsDir, filePath)
    : filePath
}
相關文章
相關標籤/搜索