Hello world

4/14/2023 9:59:11 AM

This is a test

Here comes some source code:

using Microsoft.Extensions.FileProviders;
using Volo.Abp.Application.Services;
using Volo.Abp.DependencyInjection;

namespace BookStorePdf;

private void ConfigureBundles()
    {
        Configure<AbpBundlingOptions>(options =>
        {
            options.StyleBundles.Configure(
                LeptonXThemeBundles.Styles.Global,
                bundle =>
                {
                    bundle.AddFiles("/global-styles.css");
                    bundle.Contributors.Replace<LeptonXGlobalStyleContributor, LeptonXGdprComplientGlobalStyleContributor>();
                    //bundle.Contributors.Replace<HighlightJsStyleContributor, HighlightJsChrobyteStyleContributor>();
                    //bundle.Contributors.Remove<HighlightJsStyleContributor>();
                    bundle.Contributors.Add<HighlightJsChrobyteStyleContributor>();
                }
            );

            options.ScriptBundles.Configure(
                LeptonXThemeBundles.Styles.Global,
                bundle =>
                {
                    bundle.AddFiles("/scripts/app.js");
                });

            options.DeferScripts.Add("~/scripts/app.js");
        });
    }

Some additional text

Last Modification : 5/11/2023 3:34:01 PM


Cookies

This site uses cookies.
This website uses cookies. Some cookies are technically necessary, others are used to analyze user behavior in order to optimize the offer. You can find an explanation in our Privacy Policy.