I am trying to upgrade my angular version to 13 and after updating the version I am getting the below error in the sass files.
This is my sample code
@if $enable-light-style {
.light-style {
@import "../_appwork/include";
$ui-star-empty-color: $gray-200;
$ui-icon-border-color: $gray-100;
}
But I am getting the below error.
SassError: This at-rule is not allowed here.
╷
396 │ @import "../_appwork/include";
Could anyone help to resolve this problem?
Thanks in advance