feat: crud and backups are working

This commit is contained in:
2025-05-30 18:49:40 -04:00
parent 3ee136d52d
commit b8ce9ded76
19 changed files with 191 additions and 21 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ export function BlogViewer() {
const { slug } = useParams();
useEffect(() => {
fetch(`/blogs/${slug ?? "home"}.md`)
fetch(`localhost:8000/get-blogs/${slug}`)
.then((res) => res.text())
.then(setContent);
}, []);