diff --git a/src/pages/people/[...slug].astro b/src/pages/people/[...slug].astro index e6a02c2..1d54a49 100644 --- a/src/pages/people/[...slug].astro +++ b/src/pages/people/[...slug].astro @@ -1,6 +1,8 @@ --- import { type CollectionEntry, getCollection } from "astro:content"; -export async function getStaticPaths() {} +export async function getStaticPaths() { + return []; +} // import Person from "../../layouts/Person.astro"; // // export async function getStaticPaths() {