protected override void ConfigureWebHost(IWebHostBuilder webBuilder)
 {
     webBuilder
     .ConfigureBundleSink(builder => {
         builder.PrintAdditionalAttributesCondition = environment => true;
         builder.PrintCommentsCondition             = environment => true;
         builder.WithWebpack("wwwroot/dist/client-manifest.json", "/dist/");
     });
 }