From 30351d930f86a40b51b6ea3265189e8b4e8e8bf7 Mon Sep 17 00:00:00 2001 From: Matthew Wells Date: Thu, 30 Apr 2020 14:35:15 -0500 Subject: [PATCH] Disable z-index compression This converts values like z-index: 1050 (for SideTra) to z-index: 2. We do not want this compression as we currently rely on these high numbers in our main app. --- rollup.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 8e5dff45..64753dc8 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -42,7 +42,9 @@ export default { }), postcssCalc(), ], - minimize: true, + minimize: { + zindex: false, + }, modules: { getJSON() {}, generateScopedName: 'rvr-[sha256:hash:base64:3]',