Jan Tesař
Jan Tesař
Just some quick ideas: - It can work by scanning through the generated html files and will find all the links. There will be a lot of duplicates - It...
Would you mind to switch the target framework to dotnet 8 and test it there?
That's weird, because it worked for dotnet 8 for sure. There were always some troubles tho. Can you share the minimal repo? I will start from there.
Ok, I see and I can reproduce the issue, but in a weird way. The hotreload is probably somehow platform dependent and also IDE dependent: ## using `dotnet watch` outside...
There is quite a lot to see in your file watcher branch. I will hop on it later today, but please consider this: https://github.com/BlazorStatic/BlazorStatic/pull/10 There is a reason why the...
The advantage of having the files copied to the `bin` directory is the freedom you have when you process the files. You can do some overall calculations, you can process...
So you figured out the `dotnet watch`? Does it work for you? The debounce, for example 1.5 seconds, sounds like a good strategy to me. But I am unsure how...
## Separate folder The generated files all have unique names, why do we need to keep them in separate folders? For the Index.razor file it's a different, but we can...
Hey, sorry for the delay. Let's get this sorted. So, you've built your own sitemap generator that ensures trailing slashes, and you'd like to integrate it into BlazorStatic? I assume...
So what about exposing a `Func` where the string would be the `page.Url` and you would have the option to implement your own https://github.com/BlazorStatic/BlazorStatic/blob/9a70e33f0d8b269ffcb34c68e8197baf1149c90e/src/Services/BlazorStaticService.cs#L150 ? That is general enough and...