'Disable bootstrap 5 Responsive font sizes?

What is the easiest way to disable RFS in bootstrap 5?

I tried:

$font-size-base: 1.6rem;
$font-size-lg: $font-size-base;
$font-size-sm: $font-size-base;

But reboot.scss seems to override it.



Solution 1:[1]

override $enable-rfs to false.

$enable-rfs: false;

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Deekor