In the assembly chain, Bootstrap is used grunt-contrib-css, which uses clean-css(version 3.4.6)
An option has been installed in Gruntfile.js noAdvanced: true. As far as I understand, this is not an option for grunt-contrib-csseither clean-css. Instead, install advanced: false:
cssmin: {
  options: {
    // TODO: disable `zeroUnits` optimization once clean-css 3.2 is released
    //    and then simplify the fix for https://github.com/twbs/bootstrap/issues/14837 accordingly
    compatibility: 'ie9',
    keepSpecialComments: '*',
    sourceMap: true,
    advanced: false
  }, 
 source
share