Importing v5 _utilities.scss doesn't make them added
Created by: anton-white
Bootstrap version: 5.1 OS: MacOS Big Sur Node: 16
@import '~bootstrap/scss/utilities';
inside a SCSS file no longer adds utility classes to the stylesheets in v5.
A workaround is to add compiled CSS:
@import '~bootstrap/dist/css/bootstrap-utilities.min.css';
Expected behavior: Utilities should be added as other modules imports do.