I'm brand new to Webpack and have been playing around with the css-loader. On the Github page under "Local Scope" there's information about specifying a localIdentName
query tag with your own custom values like: [path][name]---[local]---[hash:base64:5]
. This tag allows us to specify how the class should be named after being processed.
Is it possible for us to define our own custom value placeholders for this query tag i.e. css-loader?localIdentName=[MyCustomMethod]-[hash:base64:5]
?