I have the following question, I'm using: extract-text-webpack-plugin version 2.0.0-rc.2 in webpack 2, and I noticed that even that I change only JS files the name of the css file is changed.
I have in my webpack config the following:
new ExtractTextPlugin("[name].[hash].css")
I want to use long cache for my CSS file, meaning that only when the file CSS is changed the hash should be different.
How I can do this, for my JS files is working just fine
BTW - This is the same behaviour in webpack 1
Thanks