Skip to content

Commit

Permalink
Disable z-index compression
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Matthew Wells committed Apr 30, 2020
1 parent 101ec74 commit 30351d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ export default {
}),
postcssCalc(),
],
minimize: true,
minimize: {
zindex: false,
},
modules: {
getJSON() {},
generateScopedName: 'rvr-[sha256:hash:base64:3]',
Expand Down

0 comments on commit 30351d9

Please sign in to comment.