diff --git a/webpack-production.config.js b/webpack-production.config.js index cbb9cbc2..1b45fca5 100644 --- a/webpack-production.config.js +++ b/webpack-production.config.js @@ -14,7 +14,7 @@ var config = Object.assign({}, skeleton, { { test: /\.styl?$/, exclude: /(node_modules|bower_components)/, - loader: 'style!css?modules&importLoaders=1&localIdentName=[path]___[name]__[local]___[hash:base64:5]!stylus?sourceMap' + loader: 'style!css?modules&importLoaders=1&localIdentName=[name]__[local]___[path]!stylus?sourceMap' } ] }, diff --git a/webpack.config.js b/webpack.config.js index 2cc1131c..84631836 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -12,7 +12,7 @@ var config = Object.assign({}, skeleton, { { test: /\.styl?$/, exclude: /(node_modules|bower_components)/, - loader: 'style!css?modules&importLoaders=1&localIdentName=[path]___[name]__[local]___[hash:base64:5]!stylus?sourceMap' + loader: 'style!css?modules&importLoaders=1&localIdentName=[name]__[local]___[path]!stylus?sourceMap' } ] },