Skip to content

Commit

Permalink
turn of zindex minimizing for cssnano in cssloader (fix #614)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusBorg authored Mar 31, 2017
1 parent f78054e commit 1b3970a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/build/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports.cssLoaders = function (options) {
var cssLoader = {
loader: 'css-loader',
options: {
minimize: process.env.NODE_ENV === 'production',
minimize: process.env.NODE_ENV === 'production' ? {zindex: false } : false,
sourceMap: options.sourceMap
}
}
Expand Down

0 comments on commit 1b3970a

Please sign in to comment.