Activities of "maliming"

You can add your CDN in the view and render it by the https://docs.abp.io/en/abp/latest/UI/AspNetCore/Layout-Hooks

hi

The CDN feature is not available on the bundling system now.

https://github.com/abpframework/abp/issues/294

In your component.

hi

Can you try to add ConfigureApplicationCookie below the AddJwtBearer?

 private void ConfigureAuthentication(IServiceCollection services, IConfiguration configuration)
{
    services.AddAuthentication()
        .AddJwtBearer(JwtBearerDefaults.AuthenticationScheme, options =>
        {
            options.Authority = configuration["AuthServer:Authority"];
            options.RequireHttpsMetadata = Convert.ToBoolean(configuration["AuthServer:RequireHttpsMetadata"]);
            options.Audience = "MyProjectName";
        });

    services.ConfigureApplicationCookie(options =>
    {
        // Forward any requests that start with /api to the JWT scheme.
        options.ForwardDefaultSelector = ctx =>
        {
            //You can also check request info or current identity(ctx.User.Identity.AuthenticationType)
            return ctx.Request.Path.StartsWithSegments("/api") ? JwtBearerDefaults.AuthenticationScheme : null;
        };
    });
}

You can call the application service in the Blazor Server.

https://docs.microsoft.com/en-us/aspnet/core/blazor/file-uploads?view=aspnetcore-6.0&pivots=server

You can only remove the modules that need to be disabled in the project.

hi

Application template do not need to generate controllers. Modules template require HttpAPI controllers.

hi

Can you explain it in details?

You're welcome.

I created an issue internally. It is not supported yet.

Showing 8951 to 8960 of 11539 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.