Write config to log
All checks were successful
Push Workflows / rustfmt (push) Successful in 6s
Push Workflows / tailwind-build (push) Successful in 6s
Push Workflows / docs (push) Successful in 19s
Push Workflows / clippy (push) Successful in 17s
Push Workflows / test (push) Successful in 24s
Push Workflows / build (push) Successful in 45s
Push Workflows / nix-build (push) Successful in 5m11s

This commit is contained in:
2026-07-14 20:32:46 -04:00
parent b4da87231d
commit af1aafbde6

View File

@@ -25,6 +25,8 @@ pub async fn main() -> Result<std::convert::Infallible> {
.map_err(|e| Error::message_here(e.to_string()))
.err_context("Failed to load config")?;
tracing::debug!("Loaded configuration: {config:#?}");
// Dioxus doesn't expose a way to configure the public path other than this environment
// variable, and also doesn't provide a way to read what the public path is. As a workaround we
// expose a config option and set this variable that Dioxus expects.