1. 程式人生 > >webpack 打包產生的文件名中,hash 與 chunkhash 的區別

webpack 打包產生的文件名中,hash 與 chunkhash 的區別

ini gin 提取 The plugin 分代 tput 文件組 xtra

hash 類型 區別
hash 每一次打包都會生成一個唯一的 hash
chunkhash 根據每個 chunk 的內容來生成;
chunk打包時,output.filename、output.chunkFilename 推薦使用 chunkhash。
contenthash 根據提取文件的內容生成的 hash;
在使用 ExtractTextWebpackPlugin(webpack 3.x)或MiniCssExtractPlugin(webpack 4.x)時,使用 contenthash 提取出css部分代碼到單獨的css文件(比如:vue單文件組件中的style部分)

webpack 打包產生的文件名中,hash 與 chunkhash 的區別