Skip to content

Commit

Permalink
fix: remove zindex optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSharpieOne committed Aug 21, 2018
1 parent 1adbb69 commit fd07b15
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ if (settings.isProduction()) {
}
}
}),
new OptimizeCSSAssetsPlugin()
new OptimizeCSSAssetsPlugin({
cssProcessorOptions: { zindex: false }
})
);
}

Expand Down
4 changes: 3 additions & 1 deletion packages/workflow-plugin-react/webpack.config.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ if (settings.isProduction()) {
}
}
}),
new OptimizeCSSAssetsPlugin()
new OptimizeCSSAssetsPlugin({
cssProcessorOptions: { zindex: false }
})
);
}

Expand Down

0 comments on commit fd07b15

Please sign in to comment.