A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
Hi,
My guess is you are having this issue on your local environment? Here is an article that talks about utilizing that package on specific environments.
Also, make sure you have "EPiServerAzureBlobs" in the ConnectionStrings section of your appsettings when deploying to other environments.
Hope this helps.
One simple workaround is to do this
if (!_webHostingEnvironment.IsDevelopment())
{
services.AddCmsCloudPlatformSupport(configuration)
}
so you won't need blob storages and servicebus for local development
Hello,
When adding the services.AddCmsCloudPlatformSupport(configuration) to our Startup.cs, we are getting the following error:
Missing blob connection string (Parameter 'connectionString')
Any ideas what this is?