Currently there is no way to set the precision option like you would with sass-loader. A lot of projects using bootstrap will experience some measurements being off by 1px because the default line-height has 9 precision digits. node-sass defaults to 5 precision digits.
Example: 14px font-size 1.428571429 line-height would end up as 20px but 14px font-size 1.42857 line-height would be 19px.
Currently there is no way to set the
precision
option like you would withsass-loader
. A lot of projects using bootstrap will experience some measurements being off by 1px because the default line-height has 9 precision digits. node-sass defaults to 5 precision digits.Example: 14px font-size 1.428571429 line-height would end up as 20px but 14px font-size 1.42857 line-height would be 19px.