blob: 5336bb063e4877dcb81440f4f798fe1b282a6a62 (
plain) (
blame)
1
2
3
4
5
6
|
import type { Post } from '$/lib/blog/Post.svelte';
export const posts = import.meta.glob("./posts/*.svx", {
eager: true
}) as Record<string, Promise<Post>>
export default posts
|