Webpack에서 CSS 번들 해시
[contenthash] 명령을 사용하여
CSS 번들 파일 이름에 해시를
설정할 수 있습니다:
plugins: [new MiniCssExtractPlugin({
filename: 'build.[contenthash].css'
})],
모든 CSS를 bundle.css 및 해시가 포함된
파일 이름으로 번들링하세요.
[contenthash] 명령을 사용하여
CSS 번들 파일 이름에 해시를
설정할 수 있습니다:
plugins: [new MiniCssExtractPlugin({
filename: 'build.[contenthash].css'
})],
모든 CSS를 bundle.css 및 해시가 포함된
파일 이름으로 번들링하세요.