webpack 的 css-loader 有一个选项 'localIdentName',除了 ' [hash:base64]' 之外还有什么吗?
webpack's css-loader has an options 'localIdentName', is there anything else other than ' [hash:base64]'?
如[hash:MD5] [hash:SHA]。我看过css-loader readme文档,里面没有相关资料
实际上 localIdentName
有一些选项,例如 base32
、base16
、hex
等
不过我觉得最好的是base64
,你可以这样写:
sha512:hash:base64:5
有关详细信息,您可以阅读 this GitHub Issue
如[hash:MD5] [hash:SHA]。我看过css-loader readme文档,里面没有相关资料
实际上 localIdentName
有一些选项,例如 base32
、base16
、hex
等
不过我觉得最好的是base64
,你可以这样写:
sha512:hash:base64:5
有关详细信息,您可以阅读 this GitHub Issue