In a Blazor Web Assembly project, I'm trying to use the Blazorise library to use Lottie animations. I'm following the steps in the documentation, but I get the error:
"Value for property
ClassProvider
on typeBlazorise.LottieAnimation.LottieAnimation
. There is no registered service of typeBlazorise.IClassProvider
."
In all the examples I've seen, none of them register the service, and even then, I don't have a way to do it since the library doesn't have a LottieAnimation provider.
builder.Services.AddBlazorise(options =\>{ options.Immediate = true;}).AddLottieAnimation();
I tried add the Services, but it's didnt work