浏览代码

fix static site generation with child routers

Evan Almloff 1 年之前
父节点
当前提交
1eb90bf43a
共有 1 个文件被更改,包括 1 次插入0 次删除
  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 {