Andrey Karandashov

Results 6 comments of Andrey Karandashov

@bjarnef You can set it up with ImageSharp configuration. here is the details: https://our.umbraco.com/Documentation/Reference/Configuration/ImagingSettings/ But I'm not sure what is the best way to handle SVG files, cuz you can't...

``` app.UseStaticFiles(new StaticFileOptions() { FileProvider = new PhysicalFileProvider(Path.Combine(env.WebRootPath, "scripts")), RequestPath = "/scripts", HttpsCompression = Microsoft.AspNetCore.Http.Features.HttpsCompressionMode.Compress, OnPrepareResponse = (context) => { string path = context.File.PhysicalPath; if (path.EndsWith(".css") || path.EndsWith(".js") || path.EndsWith(".gif")...

Hi @PatrickNausha Did you solve the issues with loadable-components integration? :)

@skttl I've tried to setup external auth provider for backoffice with v9 in Umbraco Cloud and everything was fine.

@skttl It was Azure AD, but I was using OpenIdConnect protocol

@skttl and do not forget to disable auto-redirect for Umbraco ID if you want to use 2 external providers in parallel. (you don't have auto redirect for local environment, but...