From 4f8febff6d4e3fd128926657069bae2e0aa2542b Mon Sep 17 00:00:00 2001 From: Tyler Hallada <thallada@edx.org> Date: Fri, 8 Dec 2017 13:11:34 -0500 Subject: [PATCH] Remove hash & path on dev webpack css module names This will make bok-choy testing easier. --- webpack.dev.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.dev.config.js b/webpack.dev.config.js index 193647682c2..e3a80aa0b67 100644 --- a/webpack.dev.config.js +++ b/webpack.dev.config.js @@ -37,7 +37,7 @@ module.exports = Merge.smart(commonConfig, { options: { sourceMap: true, modules: true, - localIdentName: '[path][name]__[local]--[hash:base64:5]' + localIdentName: '[name]__[local]' } }, { -- GitLab