Looking for a solution to utilize @use instead of @import in order to import all variables from my _custom.scss partial into the styles.scss sass file. However, facing an issue where @use is not overriding the variables as expected. Any suggestions for resolving this?
_custom.scss
$primary: #ff00f2;
$secondary: #bb6ef5;
@import "../node_modules/bootstrap/scss/bootstrap";
styles.scss
@import 'custom';