turbopack and app router; very annoying to work with!

This commit is contained in:
2025-05-31 22:06:24 -04:00
parent 657f4b1e41
commit f477ba21ea
35 changed files with 125 additions and 310 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface Site {
title: string;
pages?: Sites;
mtime?: string;
otime?: string;
}
export interface Sites {
[slug: string]: Site;
}