Webpack từ A đến Á: Webpack output hash digest (ok)
https://kentrung256.blogspot.com/2020/06/webpack-output-hash-digest.html
1. Thêm output hash trong webpack config
module.exports = {
entry: './src/index.js',
output: {
filename: 'main.[hash].js',
path: path.resolve(__dirname, 'dist')
}
}2. Độ dài của chuỗi hash
PreviousWebpack từ A đến Á: Webpack dev server (ok)NextWebpack từ A đến Á: Webpack multiple entry points (ok)
Last updated