summaryrefslogtreecommitdiff
path: root/webpack.common.js
diff options
context:
space:
mode:
authorHaishan <[email protected]>2019-02-11 22:24:56 +0800
committerHaishan <[email protected]>2019-02-11 22:38:20 +0800
commit03e46d909685bbeba8a0fe50e11a6e3fa970bd55 (patch)
tree4ca7d2922cd57d9451b48f0f7c1ff08711d5ab4c /webpack.common.js
parentf364975545806bd98ca1e001e92f296c308f18c5 (diff)
style: new layout for proxy item
also: - speed up proxy item on hover scale up animation - reduce icons stroke width
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index 3974471..d17f088 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -50,7 +50,7 @@ const cssExtractPlugin = new MiniCssExtractPlugin({
filename: isDev ? '[name].bundle.css' : '[name].[chunkhash].css'
});
-const LOCAL_IDENT_NAME_DEV = '[path]---[name]---[local]---[hash:base64:5]';
+const LOCAL_IDENT_NAME_DEV = '[path]_[name]_[local]_[hash:base64:5]';
const LOCAL_IDENT_NAME_PROD = '[hash:base64:10]';
const localIdentName = isDev ? LOCAL_IDENT_NAME_DEV : LOCAL_IDENT_NAME_PROD;