1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #6282 from viown/add-hash-to-filenames

Add content hash to CSS files
This commit is contained in:
Bill Thornton 2024-11-01 10:31:18 -04:00 committed by GitHub
commit d365dd1b98
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -338,7 +338,9 @@ const config = {
};
if (!DEV_MODE) {
config.plugins.push(new MiniCssExtractPlugin());
config.plugins.push(new MiniCssExtractPlugin({
filename: '[name].[contenthash].css'
}));
}
module.exports = config;