Skip to content

Commit

Permalink
Work around compile error in latest vibe.d
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Mar 4, 2022
1 parent 1555abd commit cc286a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ddox/settings.d
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class DdoxSettings {
class GeneratorSettings {
NavigationType navigationType = NavigationType.moduleTree;
/// used for sitemap generation and for determining the URL prefix in registerApiDocs()
URL siteUrl = URL("http://localhost:8080/");
URL siteUrl = URL("http", "localhost", 8080, InetPath("/"));
/// focus search field on load
bool focusSearchField = false;
/// Defines how symbol names are mapped to file names when generating file based documentation (useful for case insensitive file systems)
Expand Down

0 comments on commit cc286a0

Please sign in to comment.