Browse Source

fix static site generation with child routers

Evan Almloff 1 year ago
parent
commit
1eb90bf43a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/static-generation/src/ssg.rs

+ 1 - 0
packages/static-generation/src/ssg.rs

@@ -44,6 +44,7 @@ pub async fn generate_static_site(
         for route in flat_site_map {
             let Some(static_route) = route
                 .iter()
+                .filter(|s| s.to_child().is_none())
                 .map(SegmentType::to_static)
                 .collect::<Option<Vec<_>>>()
             else {