Jan Tesař
Jan Tesař
it seems the `AddBeforeFilesGenerationAction` is the right place. ```cs builder.Services.AddBlazorStaticService(opt => { opt.AddBeforeFilesGenerationAction(() => { foreach(var page in opt.PagesToGenerate) { Console.WriteLine($"Page to be generated. outpufile:{page.OutputFile}, url:{page.Url}"); } return Task.CompletedTask; });...
> very happy to have learned of this! We really need to step up with the docs or examples. It would be cool do generate documentation for BlazorStatic with BlazorStatic....