Currently, I am utilizing web pack for compiling my scss files into css and Bootstrap 4 is being used in my project.
An unusual occurrence caught my attention, within my scss file, the following property is defined:
color: rgba(255, 255, 255, 0.9);
Once web pack finishes compilation, in the resulting css, this property transforms into:
color: hsla(0,0%,100%,.5);
I do not desire this conversion of rgba to hsla to occur; how can I prevent it?